@thecb/components 7.10.5-beta.2 → 7.10.5-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.cjs.js CHANGED
@@ -4967,7 +4967,8 @@ var SEASHELL_WHITE = "#F1F1F1";
4967
4967
  var ALABASTER_WHITE = "#F7F7F7";
4968
4968
  var AQUA_HAZE_WHITE = "#F7F9FA";
4969
4969
  var BLEACH_WHITE = "#FEF4d7";
4970
- var CATSKILL_WHITE = "#EAF2F6"; // GREY
4970
+ var CATSKILL_WHITE = "#EAF2F6";
4971
+ var HALF_COLONIAL_WHITE = "#FDF4D2"; // GREY
4971
4972
 
4972
4973
  var ATHENS_GREY = "#F6F6F9"; // CBS-100
4973
4974
 
@@ -5015,7 +5016,9 @@ var INFO_BLUE = "#E4F4FD";
5015
5016
  var HOVER_LIGHT_BLUE = "#EFFAFF";
5016
5017
  var MATISSE_BLUE = "#15749D";
5017
5018
  var ROYAL_BLUE = "#3181E3";
5018
- var ASTRAL_BLUE = "#3176AA"; // GREEN
5019
+ var ASTRAL_BLUE = "#3176AA";
5020
+ var SAPPHIRE_BLUE = "#116285";
5021
+ var PEACOCK_BLUE = "#0E506D"; // GREEN
5019
5022
 
5020
5023
  var FOREST_GREEN = "#19b03F";
5021
5024
  var MEADOW_GREEN = "#16C98D";
@@ -5038,6 +5041,7 @@ var RED = "#FF0000";
5038
5041
  var CRIMSON_RED = "#ED1C24";
5039
5042
  var THUNDERBIRD_RED = "#C3191F";
5040
5043
  var RAZZMATAZZ_RED = "#D11053";
5044
+ var RASPBERRY = "#ED125F";
5041
5045
  var FANTASY_RED = "#FCF4F4";
5042
5046
  var COSMOS_RED = "#FFD0D3";
5043
5047
  var BLUSH_RED = "#FFF0F5"; // Second level color constants
@@ -5071,6 +5075,25 @@ var ALERT_COLORS = {
5071
5075
  },
5072
5076
  text: ZODIAC_BLUE,
5073
5077
  link: SCIENCE_BLUE
5078
+ }; // These pill colors match the current CityBase design and are grouped for convenience.
5079
+
5080
+ var PILL_COLORS = {
5081
+ danger: {
5082
+ background: BLUSH_RED,
5083
+ text: RAZZMATAZZ_RED
5084
+ },
5085
+ neutral: {
5086
+ background: GRECIAN_GREY,
5087
+ text: CHARADE_GREY
5088
+ },
5089
+ success: {
5090
+ background: HINT_GREEN,
5091
+ text: SEA_GREEN
5092
+ },
5093
+ warning: {
5094
+ background: HALF_COLONIAL_WHITE,
5095
+ text: ZEST_ORANGE
5096
+ }
5074
5097
  };
5075
5098
 
5076
5099
  var colors = /*#__PURE__*/Object.freeze({
@@ -5122,6 +5145,8 @@ var colors = /*#__PURE__*/Object.freeze({
5122
5145
  MATISSE_BLUE: MATISSE_BLUE,
5123
5146
  ROYAL_BLUE: ROYAL_BLUE,
5124
5147
  ASTRAL_BLUE: ASTRAL_BLUE,
5148
+ SAPPHIRE_BLUE: SAPPHIRE_BLUE,
5149
+ PEACOCK_BLUE: PEACOCK_BLUE,
5125
5150
  FOREST_GREEN: FOREST_GREEN,
5126
5151
  MEADOW_GREEN: MEADOW_GREEN,
5127
5152
  POLAR_GREEN: POLAR_GREEN,
@@ -5133,6 +5158,7 @@ var colors = /*#__PURE__*/Object.freeze({
5133
5158
  SELECTIVE_YELLOW: SELECTIVE_YELLOW,
5134
5159
  MUSTARD_YELLOW: MUSTARD_YELLOW,
5135
5160
  FIRE_YELLOW: FIRE_YELLOW,
5161
+ HALF_COLONIAL_WHITE: HALF_COLONIAL_WHITE,
5136
5162
  CARROT_ORANGE: CARROT_ORANGE,
5137
5163
  ZEST_ORANGE: ZEST_ORANGE,
5138
5164
  APRICOT_ORANGE: APRICOT_ORANGE,
@@ -5143,7 +5169,9 @@ var colors = /*#__PURE__*/Object.freeze({
5143
5169
  FANTASY_RED: FANTASY_RED,
5144
5170
  COSMOS_RED: COSMOS_RED,
5145
5171
  BLUSH_RED: BLUSH_RED,
5172
+ RASPBERRY: RASPBERRY,
5146
5173
  ALERT_COLORS: ALERT_COLORS,
5174
+ PILL_COLORS: PILL_COLORS,
5147
5175
  ERROR_COLOR: ERROR_COLOR
5148
5176
  });
5149
5177
 
@@ -6318,6 +6346,14 @@ var throttle = function throttle(delay, fn) {
6318
6346
  return fn.apply(void 0, arguments);
6319
6347
  };
6320
6348
  };
6349
+ var titleCaseWord = function titleCaseWord(word) {
6350
+ return word.charAt(0).toUpperCase() + word.slice(1);
6351
+ };
6352
+ var titleCaseString = function titleCaseString(string) {
6353
+ return string.split(" ").map(function (word, index, string) {
6354
+ return index === 0 || index === string.length - 1 || word.length > 3 ? titleCaseWord(word.toLowerCase()) : word;
6355
+ }).join(" ");
6356
+ };
6321
6357
 
6322
6358
  var general = /*#__PURE__*/Object.freeze({
6323
6359
  __proto__: null,
@@ -6335,7 +6371,9 @@ var general = /*#__PURE__*/Object.freeze({
6335
6371
  inputPlaceholderTextStyle: inputPlaceholderTextStyle,
6336
6372
  inputDisabledStyle: inputDisabledStyle,
6337
6373
  MOBILE_WIDTH: MOBILE_WIDTH,
6338
- throttle: throttle
6374
+ throttle: throttle,
6375
+ titleCaseWord: titleCaseWord,
6376
+ titleCaseString: titleCaseString
6339
6377
  });
6340
6378
 
6341
6379
  var _excluded$1 = ["themeValues", "weight", "color", "textWrap", "extraStyles", "hoverStyles", "onClick", "onKeyPress", "as", "dataQa", "children", "variant"];
@@ -6456,8 +6494,9 @@ var BoxWrapper = styled__default(function (_ref) {
6456
6494
  return textAlign;
6457
6495
  }, function (_ref14) {
6458
6496
  var hoverStyles = _ref14.hoverStyles,
6459
- as = _ref14.as;
6460
- return styled.css(["", " ", ""], hoverStyles, as === "button" ? "> * > span {\n ".concat(hoverStyles, "\n border: none;\n outline: none;\n box-shadow: none;\n }") : "");
6497
+ as = _ref14.as,
6498
+ disabled = _ref14.disabled;
6499
+ return styled.css(["", " ", ""], hoverStyles, as === "button" && !disabled ? "> * > span {\n ".concat(hoverStyles, "\n border: none;\n outline: none;\n box-shadow: none;\n }") : "");
6461
6500
  }, function (_ref15) {
6462
6501
  var as = _ref15.as;
6463
6502
  return styled.css(["outline:3px solid ", ";outline-offset:2px;", ""], ROYAL_BLUE, as === "button" && "\n > * > span {\n border: none;\n outline: none;\n box-shadow: none;\n }");
@@ -6657,7 +6696,7 @@ var ClusterInnerWrapper = styled__default.div.withConfig({
6657
6696
  return childGap;
6658
6697
  });
6659
6698
 
6660
- var _excluded$6 = ["justify", "align", "childGap", "minHeight", "minWidth", "nowrap", "overflow", "justifySelf", "alignSelf", "flexGrow", "extraStyles", "children"];
6699
+ var _excluded$6 = ["justify", "align", "childGap", "minHeight", "minWidth", "nowrap", "overflow", "justifySelf", "alignSelf", "flexGrow", "extraStyles", "children", "innerWrapperAs"];
6661
6700
  /*
6662
6701
  Cluster components suit any groups of elements that differ in
6663
6702
  length and are liable to wrap. Buttons that appear together at the
@@ -6681,6 +6720,8 @@ var Cluster = function Cluster(_ref) {
6681
6720
  flexGrow = _ref.flexGrow,
6682
6721
  extraStyles = _ref.extraStyles,
6683
6722
  children = _ref.children,
6723
+ _ref$innerWrapperAs = _ref.innerWrapperAs,
6724
+ innerWrapperAs = _ref$innerWrapperAs === void 0 ? "div" : _ref$innerWrapperAs,
6684
6725
  rest = _objectWithoutProperties(_ref, _excluded$6);
6685
6726
 
6686
6727
  return /*#__PURE__*/React__default.createElement(ClusterWrapper, _extends({
@@ -6696,7 +6737,8 @@ var Cluster = function Cluster(_ref) {
6696
6737
  childGap: childGap,
6697
6738
  minHeight: minHeight,
6698
6739
  minWidth: minWidth,
6699
- $nowrap: nowrap
6740
+ $nowrap: nowrap,
6741
+ as: innerWrapperAs
6700
6742
  }, safeChildren(children, /*#__PURE__*/React__default.createElement(React.Fragment, null))));
6701
6743
  };
6702
6744
 
@@ -12533,10 +12575,6 @@ var Reel = function Reel(_ref) {
12533
12575
  }), safeChildren(children, /*#__PURE__*/React__default.createElement(React.Fragment, null)));
12534
12576
  };
12535
12577
 
12536
- /*
12537
- For now I'm using string values, eventually shared components library will have its own constants file
12538
- for colors/values that should be used here instead
12539
- */
12540
12578
  var padding = {
12541
12579
  primary: "0.75rem 1.5rem",
12542
12580
  secondary: "0.75rem 1.5rem",
@@ -12547,21 +12585,23 @@ var padding = {
12547
12585
  tertiary: "0.75rem 1.5rem",
12548
12586
  ghost: "0.65rem 0",
12549
12587
  danger: "0.75rem 1.5rem",
12588
+ dangerSecondary: "0.75rem 1.5rem",
12550
12589
  whiteSecondary: "0.75rem 2rem",
12551
12590
  whitePrimary: "1.125rem 0.75rem"
12552
12591
  };
12553
12592
  var color$1 = {
12554
- primary: "#FFFFFF",
12555
- secondary: "#15749D",
12556
- back: "#15749D",
12557
- smallPrimary: "#FFFFFF",
12558
- smallSecondary: "#15749D",
12559
- smallGhost: "#15749D",
12560
- ghost: "#15749D",
12561
- tertiary: "#15749D",
12562
- danger: "#FFFFFF",
12563
- whiteSecondary: "#FFFFFF",
12564
- whitePrimary: "#FFFFFF"
12593
+ primary: WHITE,
12594
+ secondary: MATISSE_BLUE,
12595
+ back: MATISSE_BLUE,
12596
+ smallPrimary: WHITE,
12597
+ smallSecondary: MATISSE_BLUE,
12598
+ smallGhost: MATISSE_BLUE,
12599
+ ghost: MATISSE_BLUE,
12600
+ tertiary: MATISSE_BLUE,
12601
+ danger: WHITE,
12602
+ dangerSecondary: ERROR_COLOR,
12603
+ whiteSecondary: WHITE,
12604
+ whitePrimary: WHITE
12565
12605
  };
12566
12606
  var fontSizeVariant = {
12567
12607
  primary: "pS",
@@ -12573,6 +12613,7 @@ var fontSizeVariant = {
12573
12613
  ghost: "pL",
12574
12614
  tertiary: "pS",
12575
12615
  danger: "pS",
12616
+ dangerSecondary: "pS",
12576
12617
  whiteSecondary: "pS",
12577
12618
  whitePrimary: "pS"
12578
12619
  };
@@ -12586,6 +12627,7 @@ var fontWeight = {
12586
12627
  ghost: "600",
12587
12628
  tertiary: "600",
12588
12629
  danger: "600",
12630
+ dangerSecondary: "600",
12589
12631
  whiteSecondary: "600",
12590
12632
  whitePrimary: "600"
12591
12633
  };
@@ -12599,6 +12641,7 @@ var height = {
12599
12641
  ghost: "3rem",
12600
12642
  tertiary: "3rem",
12601
12643
  danger: "3rem",
12644
+ dangerSecondary: "3rem",
12602
12645
  whiteSecondary: "3rem",
12603
12646
  whitePrimary: "auto"
12604
12647
  };
@@ -12612,112 +12655,121 @@ var minWidth = {
12612
12655
  ghost: "130px",
12613
12656
  tertiary: "130px",
12614
12657
  danger: "130px",
12658
+ dangerSecondary: "157px",
12615
12659
  whiteSecondary: "160px",
12616
12660
  whitePrimary: "130px"
12617
12661
  };
12618
12662
  var backgroundColor = {
12619
- primary: "#15749D",
12620
- secondary: "transparent",
12621
- back: "transparent",
12622
- smallPrimary: "#15749D",
12623
- smallSecondary: "transparent",
12624
- smallGhost: "transparent",
12625
- ghost: "transparent",
12626
- tertiary: "transparent",
12627
- danger: "#ED125F",
12628
- whiteSecondary: "transparent",
12629
- whitePrimary: "transparent"
12663
+ primary: MATISSE_BLUE,
12664
+ secondary: TRANSPARENT,
12665
+ back: TRANSPARENT,
12666
+ smallPrimary: MATISSE_BLUE,
12667
+ smallSecondary: TRANSPARENT,
12668
+ smallGhost: TRANSPARENT,
12669
+ ghost: TRANSPARENT,
12670
+ tertiary: TRANSPARENT,
12671
+ danger: RASPBERRY,
12672
+ dangerSecondary: TRANSPARENT,
12673
+ whiteSecondary: TRANSPARENT,
12674
+ whitePrimary: TRANSPARENT
12630
12675
  };
12631
12676
  var border = {
12632
- primary: "2px solid #15749D",
12633
- secondary: "2px solid #15749D",
12634
- back: "2px solid #15749D",
12635
- smallPrimary: "2px solid #15749D",
12636
- smallSecondary: "2px solid #15749D",
12677
+ primary: "2px solid " + MATISSE_BLUE,
12678
+ secondary: "2px solid " + MATISSE_BLUE,
12679
+ back: "2px solid " + MATISSE_BLUE,
12680
+ smallPrimary: "2px solid " + MATISSE_BLUE,
12681
+ smallSecondary: "2px solid " + MATISSE_BLUE,
12637
12682
  smallGhost: "none",
12638
12683
  ghost: "none",
12639
12684
  tertiary: "none",
12640
- danger: "2px solid #ED125F",
12641
- whiteSecondary: "2px solid white",
12642
- whitePrimary: "2px solid transparent"
12685
+ danger: "2px solid " + RASPBERRY,
12686
+ dangerSecondary: "2px solid " + ERROR_COLOR,
12687
+ whiteSecondary: "2px solid " + WHITE,
12688
+ whitePrimary: "2px solid " + TRANSPARENT
12643
12689
  };
12644
12690
  var hoverBackgroundColor = {
12645
- primary: "#116285",
12691
+ primary: SAPPHIRE_BLUE,
12646
12692
  secondary: "#DBEAF0",
12647
- back: "transparent",
12648
- smallPrimary: "#116285",
12693
+ back: TRANSPARENT,
12694
+ smallPrimary: SAPPHIRE_BLUE,
12649
12695
  smallSecondary: "#DBEAF0",
12650
- smallGhost: "transparent",
12651
- ghost: "transparent",
12652
- tertiary: "transparent",
12696
+ smallGhost: TRANSPARENT,
12697
+ ghost: TRANSPARENT,
12698
+ tertiary: TRANSPARENT,
12653
12699
  danger: "#BA002C",
12654
- whiteSecondary: "transparent",
12655
- whitePrimary: "transparent"
12700
+ dangerSecondary: "#FAE7EE",
12701
+ whiteSecondary: TRANSPARENT,
12702
+ whitePrimary: TRANSPARENT
12656
12703
  };
12657
12704
  var hoverBorderColor = {
12658
- primary: "#116285",
12659
- secondary: "#15749D",
12705
+ primary: SAPPHIRE_BLUE,
12706
+ secondary: MATISSE_BLUE,
12660
12707
  back: "#DCEAF1",
12661
- smallPrimary: "#116285",
12662
- smallSecondary: "#15749D",
12663
- smallGhost: "transparent",
12664
- ghost: "transparent",
12665
- tertiary: "transparent",
12708
+ smallPrimary: SAPPHIRE_BLUE,
12709
+ smallSecondary: MATISSE_BLUE,
12710
+ smallGhost: TRANSPARENT,
12711
+ ghost: TRANSPARENT,
12712
+ tertiary: TRANSPARENT,
12666
12713
  danger: "#BA002C",
12667
- whiteSecondary: "2px solid transparent",
12668
- whitePrimary: "2px solid transparent"
12714
+ dangerSecondary: "#B10541",
12715
+ whiteSecondary: "2px solid " + TRANSPARENT,
12716
+ whitePrimary: "2px solid " + TRANSPARENT
12669
12717
  };
12670
12718
  var hoverColor = {
12671
- primary: "#FFFFFF",
12672
- secondary: "#116285",
12673
- back: "#116285",
12674
- smallPrimary: "#FFFFFF",
12675
- smallSecondary: "#116285",
12676
- smallGhost: "#116285",
12677
- ghost: "#116285",
12678
- tertiary: "#116285",
12679
- danger: "#FFFFFF",
12680
- whiteSecondary: "#FFFFFF",
12681
- whitePrimary: "#FFFFFF"
12719
+ primary: WHITE,
12720
+ secondary: SAPPHIRE_BLUE,
12721
+ back: SAPPHIRE_BLUE,
12722
+ smallPrimary: WHITE,
12723
+ smallSecondary: SAPPHIRE_BLUE,
12724
+ smallGhost: SAPPHIRE_BLUE,
12725
+ ghost: SAPPHIRE_BLUE,
12726
+ tertiary: SAPPHIRE_BLUE,
12727
+ danger: WHITE,
12728
+ dangerSecondary: "#B10541",
12729
+ whiteSecondary: WHITE,
12730
+ whitePrimary: WHITE
12682
12731
  };
12683
12732
  var activeBackgroundColor = {
12684
- primary: "#0E506D",
12733
+ primary: PEACOCK_BLUE,
12685
12734
  secondary: "#B8D5E1",
12686
- back: "transparent",
12687
- smallPrimary: "#0E506D",
12735
+ back: TRANSPARENT,
12736
+ smallPrimary: PEACOCK_BLUE,
12688
12737
  smallSecondary: "#B8D5E1",
12689
- smallGhost: "transparent",
12690
- ghost: "transparent",
12691
- tertiary: "transparent",
12738
+ smallGhost: TRANSPARENT,
12739
+ ghost: TRANSPARENT,
12740
+ tertiary: TRANSPARENT,
12692
12741
  danger: "#870000",
12693
- whiteSecondary: "transparent",
12694
- whitePrimary: "transparent"
12742
+ dangerSecondary: "#FAE7EE",
12743
+ whiteSecondary: TRANSPARENT,
12744
+ whitePrimary: TRANSPARENT
12695
12745
  };
12696
12746
  var activeBorderColor = {
12697
- primary: "#0E506D",
12698
- secondary: "#15749D",
12699
- back: "#0E506D",
12700
- smallPrimary: "#0E506D",
12701
- smallSecondary: "#15749D",
12702
- smallGhost: "transparent",
12703
- ghost: "transparent",
12704
- tertiary: "transparent",
12747
+ primary: PEACOCK_BLUE,
12748
+ secondary: MATISSE_BLUE,
12749
+ back: PEACOCK_BLUE,
12750
+ smallPrimary: PEACOCK_BLUE,
12751
+ smallSecondary: MATISSE_BLUE,
12752
+ smallGhost: TRANSPARENT,
12753
+ ghost: TRANSPARENT,
12754
+ tertiary: TRANSPARENT,
12705
12755
  danger: "#870000",
12706
- whiteSecondary: "2px solid transparent",
12707
- whitePrimary: "2px solid transparent"
12756
+ dangerSecondary: "#910029",
12757
+ whiteSecondary: "2px solid " + TRANSPARENT,
12758
+ whitePrimary: "2px solid " + TRANSPARENT
12708
12759
  };
12709
12760
  var activeColor = {
12710
- primary: "#FFFFFF",
12711
- secondary: "#15749D",
12712
- back: "#0E506D",
12713
- smallPrimary: "#FFFFFF",
12714
- smallSecondary: "#0E506D",
12715
- smallGhost: "#0E506D",
12716
- ghost: "#0E506D",
12717
- tertiary: "#0E506D",
12718
- danger: "#FFFFFF",
12719
- whiteSecondary: "#FFFFFF",
12720
- whitePrimary: "#FFFFFF"
12761
+ primary: WHITE,
12762
+ secondary: MATISSE_BLUE,
12763
+ back: PEACOCK_BLUE,
12764
+ smallPrimary: WHITE,
12765
+ smallSecondary: PEACOCK_BLUE,
12766
+ smallGhost: PEACOCK_BLUE,
12767
+ ghost: PEACOCK_BLUE,
12768
+ tertiary: PEACOCK_BLUE,
12769
+ danger: WHITE,
12770
+ dangerSecondary: "#910029",
12771
+ whiteSecondary: WHITE,
12772
+ whitePrimary: WHITE
12721
12773
  };
12722
12774
  var fallbackValues$1 = {
12723
12775
  padding: padding,
@@ -12801,7 +12853,7 @@ var SpinnerIcon = function SpinnerIcon(_ref3) {
12801
12853
  }))))));
12802
12854
  };
12803
12855
 
12804
- var _excluded$h = ["action", "variant", "text", "textWrap", "isLoading", "dataQa", "textExtraStyles", "contentOverride", "extraStyles", "tabIndex", "children"];
12856
+ var _excluded$h = ["action", "variant", "text", "textWrap", "isLoading", "loadingColor", "dataQa", "textExtraStyles", "contentOverride", "extraStyles", "tabIndex", "children", "extraDisabledStyles"];
12805
12857
  var rotate$1 = posed.div({
12806
12858
  fixed: {
12807
12859
  rotate: "0deg"
@@ -12827,11 +12879,13 @@ var SpinnerIconWrapper$1 = styled__default(rotate$1).withConfig({
12827
12879
  })([""]);
12828
12880
 
12829
12881
  var Spinner = function Spinner(_ref) {
12830
- var isMobile = _ref.isMobile;
12882
+ var color = _ref.color,
12883
+ isMobile = _ref.isMobile;
12831
12884
  return /*#__PURE__*/React__default.createElement(SpinnerContainer$1, null, /*#__PURE__*/React__default.createElement(SpinnerIconWrapper$1, {
12832
12885
  initialPose: "fixed",
12833
12886
  pose: "rotate"
12834
12887
  }, /*#__PURE__*/React__default.createElement(SpinnerIcon, {
12888
+ color: color,
12835
12889
  isMobile: isMobile
12836
12890
  })));
12837
12891
  };
@@ -12862,6 +12916,8 @@ var ButtonWithAction = function ButtonWithAction(_ref2) {
12862
12916
  textWrap = _ref2$textWrap === void 0 ? false : _ref2$textWrap,
12863
12917
  _ref2$isLoading = _ref2.isLoading,
12864
12918
  isLoading = _ref2$isLoading === void 0 ? false : _ref2$isLoading,
12919
+ _ref2$loadingColor = _ref2.loadingColor,
12920
+ loadingColor = _ref2$loadingColor === void 0 ? "white" : _ref2$loadingColor,
12865
12921
  _ref2$dataQa = _ref2.dataQa,
12866
12922
  dataQa = _ref2$dataQa === void 0 ? null : _ref2$dataQa,
12867
12923
  textExtraStyles = _ref2.textExtraStyles,
@@ -12871,6 +12927,7 @@ var ButtonWithAction = function ButtonWithAction(_ref2) {
12871
12927
  extraStyles = _ref2$extraStyles === void 0 ? "" : _ref2$extraStyles,
12872
12928
  tabIndex = _ref2.tabIndex,
12873
12929
  children = _ref2.children,
12930
+ extraDisabledStyles = _ref2.extraDisabledStyles,
12874
12931
  rest = _objectWithoutProperties(_ref2, _excluded$h);
12875
12932
 
12876
12933
  var themeContext = React.useContext(styled.ThemeContext);
@@ -12878,7 +12935,7 @@ var ButtonWithAction = function ButtonWithAction(_ref2) {
12878
12935
  var isMobile = themeContext.isMobile;
12879
12936
  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 ");
12880
12937
  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 ");
12881
- var disabledStyles = "\n background-color: #6D717E;\n border-color: #6D717E;\n color: #FFFFFF;\n cursor: default;\n &:focus {\n box-shadow: 0 0 10px #6D717E;\n outline: none;\n }\n ";
12938
+ var disabledStyles = "\n background-color: #6D717E;\n border-color: #6D717E;\n color: #FFFFFF;\n cursor: default;\n &:focus {\n box-shadow: 0 0 10px #6D717E;\n outline: none;\n }\n ".concat(extraDisabledStyles, "\n ");
12882
12939
  return /*#__PURE__*/React__default.createElement(Box, _extends({
12883
12940
  variant: variant,
12884
12941
  padding: themeValues.padding,
@@ -12899,6 +12956,7 @@ var ButtonWithAction = function ButtonWithAction(_ref2) {
12899
12956
  }, rest), contentOverride ? children : /*#__PURE__*/React__default.createElement(Center, {
12900
12957
  intrinsic: true
12901
12958
  }, isLoading ? /*#__PURE__*/React__default.createElement(Spinner, {
12959
+ color: loadingColor,
12902
12960
  isMobile: isMobile
12903
12961
  }) : /*#__PURE__*/React__default.createElement(Text$1, {
12904
12962
  weight: themeValues.fontWeight,
@@ -13796,6 +13854,35 @@ var BankIcon = function BankIcon() {
13796
13854
  }));
13797
13855
  };
13798
13856
 
13857
+ var BankIconLarge = function BankIconLarge(_ref) {
13858
+ var _ref$iconIndex = _ref.iconIndex,
13859
+ iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
13860
+ var id = "BankIconLarge-".concat(iconIndex);
13861
+ return /*#__PURE__*/React__default.createElement("svg", {
13862
+ width: "36",
13863
+ height: "24",
13864
+ viewBox: "0 0 36 24",
13865
+ fill: "none",
13866
+ xmlns: "http://www.w3.org/2000/svg"
13867
+ }, /*#__PURE__*/React__default.createElement("g", {
13868
+ clipPath: "url(#".concat(id, ")")
13869
+ }, /*#__PURE__*/React__default.createElement("path", {
13870
+ d: "M0 3C0 1.34315 1.34315 0 3 0H33C34.6569 0 36 1.34315 36 3V21C36 22.6569 34.6569 24 33 24H3C1.34315 24 0 22.6569 0 21V3Z",
13871
+ fill: "#E4F4FD"
13872
+ }), /*#__PURE__*/React__default.createElement("path", {
13873
+ fillRule: "evenodd",
13874
+ clipRule: "evenodd",
13875
+ d: "M33 1.5H3C2.17157 1.5 1.5 2.17157 1.5 3V21C1.5 21.8284 2.17157 22.5 3 22.5H33C33.8284 22.5 34.5 21.8284 34.5 21V3C34.5 2.17157 33.8284 1.5 33 1.5ZM3 0C1.34315 0 0 1.34315 0 3V21C0 22.6569 1.34315 24 3 24H33C34.6569 24 36 22.6569 36 21V3C36 1.34315 34.6569 0 33 0H3ZM23.7544 14.8335C23.6706 14.9563 23.6209 15.1293 23.6209 15.3332C23.6209 15.5465 23.5436 15.7411 23.4165 15.8885C23.349 15.9671 23.2696 16.0296 23.1834 16.0752C23.0922 16.1237 22.9909 16.1546 22.8836 16.1637C22.6961 16.1799 22.5022 16.1282 22.3391 16.0029C21.4102 15.2896 20.6945 14.8834 20.1572 14.6767C19.6165 14.4687 19.3143 14.4844 19.17 14.5249C18.988 14.576 18.7994 14.7857 18.7994 15.3332C18.7994 15.7935 18.4397 16.1665 17.9959 16.1665C17.5521 16.1665 17.1923 15.7935 17.1923 15.3332C17.1923 14.5422 17.4859 13.2709 18.7503 12.9161C19.3292 12.7536 19.9913 12.8352 20.7162 13.1141C21.2068 13.3028 21.7532 13.592 22.3632 13.9954C22.3882 13.9532 22.4147 13.9115 22.4428 13.8703C22.7715 13.3891 23.2775 13.0439 23.9432 12.9038C25.2058 12.6381 27.0336 13.1058 29.636 14.6047C30.024 14.8281 30.1638 15.3354 29.9483 15.7378C29.7329 16.1401 29.2437 16.2852 28.8557 16.0617C26.3153 14.5986 24.9289 14.397 24.2629 14.5371C23.9643 14.5999 23.8275 14.7265 23.7544 14.8335ZM26.8351 8.66659C26.8351 9.12683 26.4754 9.49992 26.0316 9.49992H17.996C17.5522 9.49992 17.1924 9.12683 17.1924 8.66659C17.1924 8.20636 17.5522 7.83327 17.996 7.83327H26.0316C26.4754 7.83327 26.8351 8.20636 26.8351 8.66659ZM8.81666 5.33333H10.8382C10.9311 5.33333 11.0201 5.37159 11.0858 5.43968C11.1514 5.50777 11.1883 5.60012 11.1883 5.69642V6.76975C11.9563 6.96326 12.6887 7.3019 13.3469 7.77398C13.4195 7.83002 13.4679 7.91348 13.4816 8.00627C13.4953 8.09906 13.4731 8.1937 13.42 8.26967L12.4001 9.76307C12.3498 9.84051 12.2725 9.89466 12.1844 9.9141C12.0964 9.93354 12.0045 9.91674 11.9282 9.86726C11.166 9.34181 10.2765 9.04965 9.36164 9.02426C8.67662 9.02426 8.34171 9.31157 8.34171 9.70308V9.73465C8.34171 10.2177 8.69184 10.4293 10.1167 10.7608C12.4427 11.288 13.898 12.071 13.898 14.0475V14.0759C13.898 15.789 12.8604 16.9502 11.1944 17.3552V18.3508C11.1944 18.3931 11.1862 18.4349 11.1704 18.4739C11.1545 18.5128 11.1312 18.548 11.102 18.5775C11.0728 18.6069 11.0381 18.63 11.0001 18.6453C10.9621 18.6606 10.9215 18.6678 10.8808 18.6665H8.77705C8.6963 18.6665 8.61885 18.6333 8.56175 18.5741C8.50466 18.5148 8.4726 18.4345 8.4726 18.3508V17.4163C7.31992 17.2199 6.22353 16.7352 5.28198 15.9955C5.24358 15.966 5.21155 15.9285 5.18791 15.8854C5.16427 15.8423 5.14954 15.7946 5.14467 15.7453C5.1398 15.696 5.1449 15.6462 5.15963 15.599C5.17436 15.5519 5.1984 15.5084 5.23023 15.4714L6.36278 14.0728C6.41845 14.0015 6.49805 13.9548 6.58558 13.9419C6.67311 13.929 6.76211 13.9509 6.83469 14.0033C7.71463 14.685 8.78089 15.0588 9.87921 15.0704C10.6495 15.0704 11.0544 14.7989 11.0544 14.3474V14.3159C11.0544 13.8644 10.7225 13.637 9.32511 13.2929C7.16045 12.7783 5.489 12.1468 5.489 9.99039V9.95881C5.489 8.27314 6.59751 6.98782 8.46654 6.66335V5.69642C8.46654 5.60012 8.50342 5.50777 8.56908 5.43968C8.63474 5.37159 8.7238 5.33333 8.81666 5.33333Z",
13876
+ fill: "#15749D"
13877
+ })), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("clipPath", {
13878
+ id: id
13879
+ }, /*#__PURE__*/React__default.createElement("rect", {
13880
+ width: "36",
13881
+ height: "24",
13882
+ fill: "white"
13883
+ }))));
13884
+ };
13885
+
13799
13886
  var GenericCard = function GenericCard() {
13800
13887
  return /*#__PURE__*/React__default.createElement("svg", {
13801
13888
  width: "28",
@@ -13821,33 +13908,6 @@ var GenericCard = function GenericCard() {
13821
13908
  }));
13822
13909
  };
13823
13910
 
13824
- var BankItemWrapper = styled__default.div.withConfig({
13825
- displayName: "PaymentIcon__BankItemWrapper",
13826
- componentId: "sc-1k0jl35-0"
13827
- })(["display:flex;justify-content:flex-start;align-items:center;"]);
13828
- var BankAccountText = styled__default.h4.withConfig({
13829
- displayName: "PaymentIcon__BankAccountText",
13830
- componentId: "sc-1k0jl35-1"
13831
- })(["color:", ";font-size:1rem;font-weight:400;line-height:1.5rem;text-align:left;margin-right:0.5rem;display:inline-block;"], CHARADE_GREY);
13832
- var CHECKING = "CHECKING";
13833
- var SAVINGS = "SAVINGS";
13834
-
13835
- var PaymentIcon = function PaymentIcon(_ref) {
13836
- var lastFour = _ref.lastFour,
13837
- accountType = _ref.accountType,
13838
- autoPay = _ref.autoPay;
13839
- return /*#__PURE__*/React__default.createElement(BankItemWrapper, null, /*#__PURE__*/React__default.createElement(Box, {
13840
- padding: "0.25rem 0 0 0",
13841
- extraStyles: "margin-right: 1rem;"
13842
- }, /*#__PURE__*/React__default.createElement(BankIcon, null)), /*#__PURE__*/React__default.createElement(Stack, {
13843
- childGap: "0"
13844
- }, accountType === CHECKING && /*#__PURE__*/React__default.createElement(BankAccountText, null, "Checking Account ending in ", lastFour), accountType === SAVINGS && /*#__PURE__*/React__default.createElement(BankAccountText, null, "Savings Account ending in ", lastFour), autoPay && /*#__PURE__*/React__default.createElement(Text$1, {
13845
- variant: "p",
13846
- color: REGENT_GREY,
13847
- extraStyles: "font-style: italic;"
13848
- }, "Autopay Enabled")));
13849
- };
13850
-
13851
13911
  var IconAdd = function IconAdd() {
13852
13912
  return /*#__PURE__*/React__default.createElement("svg", {
13853
13913
  xmlns: "http://www.w3.org/2000/svg",
@@ -14702,6 +14762,26 @@ var FailedIcon = function FailedIcon() {
14702
14762
  }))));
14703
14763
  };
14704
14764
 
14765
+ var PencilIcon = function PencilIcon(_ref) {
14766
+ var _ref$ariaLabel = _ref.ariaLabel,
14767
+ ariaLabel = _ref$ariaLabel === void 0 ? "Edit" : _ref$ariaLabel,
14768
+ themeValues = _ref.themeValues;
14769
+ return /*#__PURE__*/React__default.createElement("svg", {
14770
+ "aria-label": ariaLabel,
14771
+ width: "24px",
14772
+ height: "24px",
14773
+ fill: "none",
14774
+ xmlns: "http://www.w3.org/2000/svg"
14775
+ }, /*#__PURE__*/React__default.createElement("path", {
14776
+ fillRule: "evenodd",
14777
+ clipRule: "evenodd",
14778
+ 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",
14779
+ fill: themeValues.subIconColor
14780
+ }));
14781
+ };
14782
+
14783
+ var PencilIcon$1 = themeComponent(PencilIcon, "Icons", fallbackValues$2, "info");
14784
+
14705
14785
  var PendingIcon = function PendingIcon() {
14706
14786
  return /*#__PURE__*/React__default.createElement("svg", {
14707
14787
  width: "32px",
@@ -15569,7 +15649,14 @@ var CheckIcon = function CheckIcon() {
15569
15649
  })))))));
15570
15650
  };
15571
15651
 
15572
- var WarningIconXS = function WarningIconXS() {
15652
+ var WarningIconXS = function WarningIconXS(_ref) {
15653
+ var _ref$color = _ref.color,
15654
+ color = _ref$color === void 0 ? "#B34A00" : _ref$color,
15655
+ title = _ref.title,
15656
+ _ref$titleID = _ref.titleID,
15657
+ titleID = _ref$titleID === void 0 ? "warning-icon-title" : _ref$titleID,
15658
+ _ref$iconIndex = _ref.iconIndex,
15659
+ iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
15573
15660
  return /*#__PURE__*/React__default.createElement("svg", {
15574
15661
  width: "16px",
15575
15662
  height: "13px",
@@ -15577,40 +15664,40 @@ var WarningIconXS = function WarningIconXS() {
15577
15664
  version: "1.1",
15578
15665
  xmlns: "http://www.w3.org/2000/svg",
15579
15666
  xmlnsXlink: "http://www.w3.org/1999/xlink",
15580
- "aria-labelledby": "#warning-restricted-item",
15667
+ "aria-labelledby": title && "#".concat(titleID, "-").concat(iconIndex),
15581
15668
  role: "img"
15582
- }, /*#__PURE__*/React__default.createElement("title", {
15583
- id: "warning-restricted-item"
15584
- }, "Warning: restricted items cannot be selected"), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("path", {
15669
+ }, title && /*#__PURE__*/React__default.createElement("title", {
15670
+ id: "".concat(titleID, "-").concat(iconIndex)
15671
+ }, title), /*#__PURE__*/React__default.createElement("defs", null, /*#__PURE__*/React__default.createElement("path", {
15585
15672
  d: "M11.0106463,4.4659633 C11.3063934,4.63914978 11.5526739,4.88543032 11.7258604,5.18117739 L16.7999622,13.846119 C17.3581267,14.7992854 17.0379144,16.0244612 16.0847481,16.5826257 C15.7781918,16.762142 15.4293522,16.8567653 15.0741018,16.8567653 L4.92589823,16.8567653 C3.82132873,16.8567653 2.92589823,15.9613348 2.92589823,14.8567653 C2.92589823,14.5015149 3.02052159,14.1526753 3.20003784,13.846119 L8.27413962,5.18117739 C8.83230416,4.22801102 10.0574799,3.90779877 11.0106463,4.4659633 Z M10.6666667,13.3333333 L9.33333333,13.3333333 L9.33333333,14.6666667 L10.6666667,14.6666667 L10.6666667,13.3333333 Z M10.6666667,6.66666667 L9.33333333,6.66666667 L9.33333333,12 L10.6666667,12 L10.6666667,6.66666667 Z",
15586
- id: "WarningIconXs-path-1"
15673
+ id: "WarningIconXs-path-1-".concat(iconIndex)
15587
15674
  })), /*#__PURE__*/React__default.createElement("g", {
15588
- id: "WarningIconXs-SRV-2647---Workflow-$0-Balance",
15675
+ id: "WarningIconXs-Group-1-".concat(iconIndex),
15589
15676
  stroke: "none",
15590
15677
  strokeWidth: "1",
15591
15678
  fill: "none",
15592
15679
  fillRule: "evenodd"
15593
15680
  }, /*#__PURE__*/React__default.createElement("g", {
15594
- id: "WarningIconXs-11---Search-Results----Checked--Copy-6",
15681
+ id: "WarningIconXs-Group-2-".concat(iconIndex),
15595
15682
  transform: "translate(-135.000000, -483.000000)"
15596
15683
  }, /*#__PURE__*/React__default.createElement("g", {
15597
- id: "WarningIconXs-Group",
15684
+ id: "WarningIconXs-Group-3-".concat(iconIndex),
15598
15685
  transform: "translate(133.000000, 479.000000)"
15599
15686
  }, /*#__PURE__*/React__default.createElement("mask", {
15600
- id: "WarningIconXs-mask-2",
15687
+ id: "WarningIconXs-mask-2-".concat(iconIndex),
15601
15688
  fill: "white"
15602
15689
  }, /*#__PURE__*/React__default.createElement("use", {
15603
- xlinkHref: "#WarningIconXs-path-1"
15690
+ xlinkHref: "#WarningIconXs-path-1-".concat(iconIndex)
15604
15691
  })), /*#__PURE__*/React__default.createElement("use", {
15605
- id: "WarningIconXs-Mask",
15606
- fill: "#B34A00",
15692
+ id: "WarningIconXs-Mask-".concat(iconIndex),
15693
+ fill: color,
15607
15694
  fillRule: "nonzero",
15608
- xlinkHref: "#WarningIconXs-path-1"
15695
+ xlinkHref: "#WarningIconXs-path-1-".concat(iconIndex)
15609
15696
  }), /*#__PURE__*/React__default.createElement("polygon", {
15610
- id: "WarningIconXs-Path",
15611
- fill: "#B34A00",
15697
+ id: "WarningIconXs-Path-".concat(iconIndex),
15698
+ fill: color,
15612
15699
  fillRule: "nonzero",
15613
- mask: "url(#WarningIconXs-mask-2)",
15700
+ mask: "url(#WarningIconXs-mask-2-".concat(iconIndex, ")"),
15614
15701
  points: "-2.84217094e-14 -4.26325641e-14 20 -4.26325641e-14 20 20 -2.84217094e-14 20"
15615
15702
  })))));
15616
15703
  };
@@ -16482,6 +16569,762 @@ var FindIconSmall = function FindIconSmall(_ref) {
16482
16569
 
16483
16570
  var FindIconSmall$1 = themeComponent(FindIconSmall, "Icons", fallbackValues$2, "primary");
16484
16571
 
16572
+ var HistoryIconSmall = function HistoryIconSmall(_ref) {
16573
+ var themeValues = _ref.themeValues;
16574
+ return /*#__PURE__*/React__default.createElement("svg", {
16575
+ width: "20",
16576
+ height: "20",
16577
+ viewBox: "0 0 20 20",
16578
+ fill: "none",
16579
+ xmlns: "http://www.w3.org/2000/svg"
16580
+ }, /*#__PURE__*/React__default.createElement("path", {
16581
+ d: "M3.33337 8.33333C3.33337 7.8731 3.70647 7.5 4.16671 7.5H15.8334C16.2936 7.5 16.6667 7.8731 16.6667 8.33333V16.6667C16.6667 17.1269 16.2936 17.5 15.8334 17.5H4.16671C3.70647 17.5 3.33337 17.1269 3.33337 16.6667V8.33333Z",
16582
+ fill: themeValues.singleIconColor
16583
+ }), /*#__PURE__*/React__default.createElement("path", {
16584
+ fillRule: "evenodd",
16585
+ clipRule: "evenodd",
16586
+ d: "M5.08337 4.75C4.66916 4.75 4.33337 5.08579 4.33337 5.5C4.33337 5.91421 4.66916 6.25 5.08337 6.25H14.9134C15.3276 6.25 15.6634 5.91421 15.6634 5.5C15.6634 5.08579 15.3276 4.75 14.9134 4.75H5.08337Z",
16587
+ fill: themeValues.singleIconColor
16588
+ }), /*#__PURE__*/React__default.createElement("path", {
16589
+ fillRule: "evenodd",
16590
+ clipRule: "evenodd",
16591
+ d: "M6.03337 2.25C5.64677 2.25 5.33337 2.5634 5.33337 2.95C5.33337 3.3366 5.64678 3.65 6.03337 3.65H13.9634C14.35 3.65 14.6634 3.3366 14.6634 2.95C14.6634 2.5634 14.35 2.25 13.9634 2.25H6.03337Z",
16592
+ fill: themeValues.singleIconColor
16593
+ }));
16594
+ };
16595
+
16596
+ var HistoryIconSmall$1 = themeComponent(HistoryIconSmall, "Icons", fallbackValues$2, "primary");
16597
+
16598
+ var ChargebackIconSmall = function ChargebackIconSmall(_ref) {
16599
+ var _ref$color = _ref.color,
16600
+ color = _ref$color === void 0 ? "#15749D" : _ref$color,
16601
+ _ref$iconIndex = _ref.iconIndex,
16602
+ iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
16603
+ var id = "ChargebackIconSmall-".concat(iconIndex);
16604
+ return /*#__PURE__*/React__default.createElement("svg", {
16605
+ width: "20",
16606
+ height: "20",
16607
+ viewBox: "0 0 20 20",
16608
+ fill: "none",
16609
+ xmlns: "http://www.w3.org/2000/svg"
16610
+ }, /*#__PURE__*/React__default.createElement("circle", {
16611
+ cx: "10",
16612
+ cy: "10",
16613
+ r: "10",
16614
+ fill: color
16615
+ }), /*#__PURE__*/React__default.createElement("mask", {
16616
+ id: id,
16617
+ style: {
16618
+ maskType: "luminance"
16619
+ },
16620
+ maskUnits: "userSpaceOnUse",
16621
+ x: "2",
16622
+ y: "5",
16623
+ width: "15",
16624
+ height: "10"
16625
+ }, /*#__PURE__*/React__default.createElement("path", {
16626
+ fillRule: "evenodd",
16627
+ clipRule: "evenodd",
16628
+ d: "M6.6667 6.83325C6.6667 6.28097 7.11441 5.83325 7.6667 5.83325H15.6667C16.219 5.83325 16.6667 6.28097 16.6667 6.83325V8.33325V9.99992V13.1666C16.6667 13.7189 16.219 14.1666 15.6667 14.1666H7.6667C7.11441 14.1666 6.6667 13.7189 6.6667 13.1666V9.99992V8.33325V6.83325ZM16.0417 6.5277V8.33325H7.2917V8.26381V6.5277H16.0417ZM7.2917 13.4721V9.99992H16.0417V13.4721H7.2917ZM4.8275 8.70703C4.8275 8.26157 4.28893 8.03849 3.97395 8.35347L2.68105 9.64636C2.48579 9.84163 2.48579 10.1582 2.68105 10.3535L3.97395 11.6464C4.28893 11.9613 4.8275 11.7383 4.8275 11.2928V8.70703ZM13.4896 11.6666C13.2595 11.6666 13.0729 11.8531 13.0729 12.0833C13.0729 12.3134 13.2595 12.4999 13.4896 12.4999H14.5313C14.7614 12.4999 14.9479 12.3134 14.9479 12.0833C14.9479 11.8531 14.7614 11.6666 14.5313 11.6666H13.4896Z",
16629
+ fill: "white"
16630
+ })), /*#__PURE__*/React__default.createElement("g", {
16631
+ mask: "url(#".concat(id, ")")
16632
+ }, /*#__PURE__*/React__default.createElement("rect", {
16633
+ x: "2.5",
16634
+ y: "2.5",
16635
+ width: "15",
16636
+ height: "15",
16637
+ fill: "white"
16638
+ })));
16639
+ };
16640
+
16641
+ var ChargebackReversalIconSmall = function ChargebackReversalIconSmall(_ref) {
16642
+ var _ref$color = _ref.color,
16643
+ color = _ref$color === void 0 ? "#15749D" : _ref$color,
16644
+ _ref$iconIndex = _ref.iconIndex,
16645
+ iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
16646
+ var id = "ChargebackReversalIconSmall-".concat(iconIndex);
16647
+ return /*#__PURE__*/React__default.createElement("svg", {
16648
+ width: "20",
16649
+ height: "20",
16650
+ viewBox: "0 0 20 20",
16651
+ fill: "none",
16652
+ xmlns: "http://www.w3.org/2000/svg"
16653
+ }, /*#__PURE__*/React__default.createElement("circle", {
16654
+ cx: "10",
16655
+ cy: "10",
16656
+ r: "10",
16657
+ fill: color
16658
+ }), /*#__PURE__*/React__default.createElement("mask", {
16659
+ id: id,
16660
+ style: {
16661
+ maskType: "luminance"
16662
+ },
16663
+ maskUnits: "userSpaceOnUse",
16664
+ x: "4",
16665
+ y: "5",
16666
+ width: "14",
16667
+ height: "10"
16668
+ }, /*#__PURE__*/React__default.createElement("path", {
16669
+ fillRule: "evenodd",
16670
+ clipRule: "evenodd",
16671
+ d: "M4.16669 6.83325C4.16669 6.28097 4.6144 5.83325 5.16669 5.83325H13.1667C13.719 5.83325 14.1667 6.28097 14.1667 6.83325V8.33325V9.99992V13.1666C14.1667 13.7189 13.719 14.1666 13.1667 14.1666H5.16669C4.6144 14.1666 4.16669 13.7189 4.16669 13.1666V9.99992V8.33325V6.83325ZM13.5417 6.5277V8.33325H4.79169V8.26381V6.5277H13.5417ZM4.79169 13.4721V9.99992H13.5417V13.4721H4.79169ZM15 11.2928C15 11.7383 15.5386 11.9613 15.8536 11.6464L17.1465 10.3535C17.3417 10.1582 17.3417 9.84163 17.1465 9.64636L15.8536 8.35347C15.5386 8.03849 15 8.26157 15 8.70703V11.2928ZM10.9896 11.6666C10.7595 11.6666 10.5729 11.8531 10.5729 12.0833C10.5729 12.3134 10.7595 12.4999 10.9896 12.4999H12.0313C12.2614 12.4999 12.4479 12.3134 12.4479 12.0833C12.4479 11.8531 12.2614 11.6666 12.0313 11.6666H10.9896Z",
16672
+ fill: "white"
16673
+ })), /*#__PURE__*/React__default.createElement("g", {
16674
+ mask: "url(#".concat(id, ")")
16675
+ }, /*#__PURE__*/React__default.createElement("rect", {
16676
+ x: "2.5",
16677
+ y: "2.5",
16678
+ width: "15",
16679
+ height: "15",
16680
+ fill: "white"
16681
+ })));
16682
+ };
16683
+
16684
+ var RefundIconSmall = function RefundIconSmall(_ref) {
16685
+ var _ref$color = _ref.color,
16686
+ color = _ref$color === void 0 ? "#15749D" : _ref$color,
16687
+ _ref$iconIndex = _ref.iconIndex,
16688
+ iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
16689
+ var id = "RefundIconSmall-".concat(iconIndex);
16690
+ return /*#__PURE__*/React__default.createElement("svg", {
16691
+ width: "20",
16692
+ height: "20",
16693
+ viewBox: "0 0 20 20",
16694
+ fill: "none",
16695
+ xmlns: "http://www.w3.org/2000/svg"
16696
+ }, /*#__PURE__*/React__default.createElement("circle", {
16697
+ cx: "10",
16698
+ cy: "10",
16699
+ r: "10",
16700
+ fill: color
16701
+ }), /*#__PURE__*/React__default.createElement("path", {
16702
+ fillRule: "evenodd",
16703
+ clipRule: "evenodd",
16704
+ d: "M12.5812 14.0293V15H11.1768V14.0347C9.64976 13.8666 8.66331 13.1291 8.51283 11.757L10.2071 11.7245C10.3798 12.4403 11.004 12.82 11.8957 12.82C12.6983 12.82 13.2723 12.4024 13.2723 11.8438C13.2723 11.2636 12.8989 11.0249 12.1131 10.8514L10.7923 10.5748C9.56059 10.3308 8.7692 9.63124 8.75248 8.42733C8.74133 7.14751 9.76679 6.28525 11.2047 6.07375V5H12.6147V6.07918C14.0191 6.31779 14.8718 7.25054 14.8551 8.3731L13.211 8.40022C13.1107 7.70607 12.7875 7.28308 11.9292 7.28308C11.043 7.28308 10.4969 7.67354 10.4969 8.24295C10.4969 8.69848 10.7532 8.92625 11.6282 9.14859L12.9268 9.4577C14.3925 9.79935 15 10.6562 15 11.833C15 13.0152 14.0693 13.8395 12.5812 14.0293ZM7.5 11.3438C7.5 11.7558 7.02962 11.991 6.7 11.7438L4.7 10.2438C4.43333 10.0438 4.43333 9.64375 4.7 9.44375L6.7 7.94375C7.02962 7.69654 7.5 7.93173 7.5 8.34375V11.3438Z",
16705
+ fill: "white"
16706
+ }), /*#__PURE__*/React__default.createElement("mask", {
16707
+ id: id,
16708
+ style: {
16709
+ maskType: "luminance"
16710
+ },
16711
+ maskUnits: "userSpaceOnUse",
16712
+ x: "4",
16713
+ y: "5",
16714
+ width: "11",
16715
+ height: "10"
16716
+ }, /*#__PURE__*/React__default.createElement("path", {
16717
+ fillRule: "evenodd",
16718
+ clipRule: "evenodd",
16719
+ d: "M12.5812 14.0293V15H11.1768V14.0347C9.64976 13.8666 8.66331 13.1291 8.51283 11.757L10.2071 11.7245C10.3798 12.4403 11.004 12.82 11.8957 12.82C12.6983 12.82 13.2723 12.4024 13.2723 11.8438C13.2723 11.2636 12.8989 11.0249 12.1131 10.8514L10.7923 10.5748C9.56059 10.3308 8.7692 9.63124 8.75248 8.42733C8.74133 7.14751 9.76679 6.28525 11.2047 6.07375V5H12.6147V6.07918C14.0191 6.31779 14.8718 7.25054 14.8551 8.3731L13.211 8.40022C13.1107 7.70607 12.7875 7.28308 11.9292 7.28308C11.043 7.28308 10.4969 7.67354 10.4969 8.24295C10.4969 8.69848 10.7532 8.92625 11.6282 9.14859L12.9268 9.4577C14.3925 9.79935 15 10.6562 15 11.833C15 13.0152 14.0693 13.8395 12.5812 14.0293ZM7.5 11.3438C7.5 11.7558 7.02962 11.991 6.7 11.7438L4.7 10.2438C4.43333 10.0438 4.43333 9.64375 4.7 9.44375L6.7 7.94375C7.02962 7.69654 7.5 7.93173 7.5 8.34375V11.3438Z",
16720
+ fill: "white"
16721
+ })), /*#__PURE__*/React__default.createElement("g", {
16722
+ mask: "url(#".concat(id, ")")
16723
+ }, /*#__PURE__*/React__default.createElement("rect", {
16724
+ x: "2.5",
16725
+ y: "2.5",
16726
+ width: "15",
16727
+ height: "15",
16728
+ fill: "white"
16729
+ })));
16730
+ };
16731
+
16732
+ var XCircleIconSmall = function XCircleIconSmall(_ref) {
16733
+ var _ref$color = _ref.color,
16734
+ color = _ref$color === void 0 ? "#D11053" : _ref$color,
16735
+ _ref$iconIndex = _ref.iconIndex,
16736
+ iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
16737
+ var id = "XCircleIconSmall-".concat(iconIndex);
16738
+ return /*#__PURE__*/React__default.createElement("svg", {
16739
+ width: "21",
16740
+ height: "20",
16741
+ viewBox: "0 0 21 20",
16742
+ fill: "none",
16743
+ xmlns: "http://www.w3.org/2000/svg"
16744
+ }, /*#__PURE__*/React__default.createElement("circle", {
16745
+ cx: "10.5",
16746
+ cy: "10",
16747
+ r: "10",
16748
+ fill: color
16749
+ }), /*#__PURE__*/React__default.createElement("path", {
16750
+ fillRule: "evenodd",
16751
+ clipRule: "evenodd",
16752
+ d: "M13.8298 6.18691C13.6345 5.99165 13.3179 5.99165 13.1227 6.18691L10.5 8.80955L7.87739 6.18691C7.68213 5.99165 7.36554 5.99165 7.17028 6.18691L6.68691 6.67028C6.49165 6.86554 6.49165 7.18213 6.68691 7.37739L9.30955 10L6.68691 12.6227C6.49165 12.8179 6.49165 13.1345 6.68691 13.3298L7.17028 13.8131C7.36554 14.0084 7.68213 14.0084 7.87739 13.8131L10.5 11.1905L13.1227 13.8131C13.3179 14.0084 13.6345 14.0084 13.8298 13.8131L14.3131 13.3298C14.5084 13.1345 14.5084 12.8179 14.3131 12.6227L11.6905 10L14.3131 7.37739C14.5084 7.18213 14.5084 6.86554 14.3131 6.67028L13.8298 6.18691Z",
16753
+ fill: "white"
16754
+ }), /*#__PURE__*/React__default.createElement("mask", {
16755
+ id: id,
16756
+ style: {
16757
+ maskType: "luminance"
16758
+ },
16759
+ maskUnits: "userSpaceOnUse",
16760
+ x: "6",
16761
+ y: "6",
16762
+ width: "9",
16763
+ height: "8"
16764
+ }, /*#__PURE__*/React__default.createElement("path", {
16765
+ fillRule: "evenodd",
16766
+ clipRule: "evenodd",
16767
+ d: "M13.8298 6.18691C13.6345 5.99165 13.3179 5.99165 13.1227 6.18691L10.5 8.80955L7.87739 6.18691C7.68213 5.99165 7.36554 5.99165 7.17028 6.18691L6.68691 6.67028C6.49165 6.86554 6.49165 7.18213 6.68691 7.37739L9.30955 10L6.68691 12.6227C6.49165 12.8179 6.49165 13.1345 6.68691 13.3298L7.17028 13.8131C7.36554 14.0084 7.68213 14.0084 7.87739 13.8131L10.5 11.1905L13.1227 13.8131C13.3179 14.0084 13.6345 14.0084 13.8298 13.8131L14.3131 13.3298C14.5084 13.1345 14.5084 12.8179 14.3131 12.6227L11.6905 10L14.3131 7.37739C14.5084 7.18213 14.5084 6.86554 14.3131 6.67028L13.8298 6.18691Z",
16768
+ fill: "white"
16769
+ })), /*#__PURE__*/React__default.createElement("g", {
16770
+ mask: "url(#".concat(id, ")")
16771
+ }, /*#__PURE__*/React__default.createElement("path", {
16772
+ d: "M0.5 0H20.5V20H0.5V0Z",
16773
+ fill: "white"
16774
+ })));
16775
+ };
16776
+
16777
+ var SuccessfulIconSmall = function SuccessfulIconSmall(_ref) {
16778
+ var _ref$iconIndex = _ref.iconIndex,
16779
+ iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
16780
+ var mask0ID = "SuccessfulIconSmall-mask0-".concat(iconIndex);
16781
+ var mask1ID = "SuccessfulIconSmall-mask1-".concat(iconIndex);
16782
+ return /*#__PURE__*/React__default.createElement("svg", {
16783
+ width: "20",
16784
+ height: "20",
16785
+ viewBox: "0 0 20 20",
16786
+ fill: "none",
16787
+ xmlns: "http://www.w3.org/2000/svg"
16788
+ }, /*#__PURE__*/React__default.createElement("circle", {
16789
+ cx: "10",
16790
+ cy: "10",
16791
+ r: "10",
16792
+ fill: "#317D4F"
16793
+ }), /*#__PURE__*/React__default.createElement("mask", {
16794
+ id: mask0ID,
16795
+ style: {
16796
+ maskType: "luminance"
16797
+ },
16798
+ maskUnits: "userSpaceOnUse",
16799
+ x: "0",
16800
+ y: "0",
16801
+ width: "20",
16802
+ height: "20"
16803
+ }, /*#__PURE__*/React__default.createElement("circle", {
16804
+ cx: "10",
16805
+ cy: "10",
16806
+ r: "10",
16807
+ fill: "white"
16808
+ })), /*#__PURE__*/React__default.createElement("g", {
16809
+ mask: "url(#".concat(mask0ID, ")")
16810
+ }, /*#__PURE__*/React__default.createElement("path", {
16811
+ fillRule: "evenodd",
16812
+ clipRule: "evenodd",
16813
+ d: "M14.7817 6.18688C14.5864 5.99162 14.2698 5.99162 14.0746 6.18688L8.53558 11.7259L6.53211 9.72242C6.33685 9.52715 6.02027 9.52715 5.825 9.72242L5.3536 10.1938C5.15834 10.3891 5.15834 10.7057 5.3536 10.9009L7.71062 13.2579L8.18203 13.7294C8.37729 13.9246 8.69387 13.9246 8.88913 13.7294L9.36054 13.258C9.36068 13.2578 9.36082 13.2577 9.36096 13.2575L15.2531 7.36539C15.4484 7.17013 15.4484 6.85355 15.2531 6.65829L14.7817 6.18688Z",
16814
+ fill: "white"
16815
+ }), /*#__PURE__*/React__default.createElement("mask", {
16816
+ id: mask1ID,
16817
+ style: {
16818
+ maskType: "luminance"
16819
+ },
16820
+ maskUnits: "userSpaceOnUse",
16821
+ x: "5",
16822
+ y: "6",
16823
+ width: "11",
16824
+ height: "8"
16825
+ }, /*#__PURE__*/React__default.createElement("path", {
16826
+ fillRule: "evenodd",
16827
+ clipRule: "evenodd",
16828
+ d: "M14.7817 6.18688C14.5864 5.99162 14.2698 5.99162 14.0746 6.18688L8.53558 11.7259L6.53211 9.72242C6.33685 9.52715 6.02027 9.52715 5.825 9.72242L5.3536 10.1938C5.15834 10.3891 5.15834 10.7057 5.3536 10.9009L7.71062 13.2579L8.18203 13.7294C8.37729 13.9246 8.69387 13.9246 8.88913 13.7294L9.36054 13.258C9.36068 13.2578 9.36082 13.2577 9.36096 13.2575L15.2531 7.36539C15.4484 7.17013 15.4484 6.85355 15.2531 6.65829L14.7817 6.18688Z",
16829
+ fill: "white"
16830
+ })), /*#__PURE__*/React__default.createElement("g", {
16831
+ mask: "url(#".concat(mask1ID, ")")
16832
+ }, /*#__PURE__*/React__default.createElement("rect", {
16833
+ x: "1.66669",
16834
+ y: "1.66666",
16835
+ width: "16.6667",
16836
+ height: "16.6667",
16837
+ fill: "white"
16838
+ }))));
16839
+ };
16840
+
16841
+ var ArrowLeftCircleIconSmall = function ArrowLeftCircleIconSmall(_ref) {
16842
+ var _ref$color = _ref.color,
16843
+ color = _ref$color === void 0 ? "#15749D" : _ref$color,
16844
+ _ref$iconIndex = _ref.iconIndex,
16845
+ iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
16846
+ var id = "ArrowLeftCircleIconSmall-".concat(iconIndex);
16847
+ return /*#__PURE__*/React__default.createElement("svg", {
16848
+ width: "20",
16849
+ height: "20",
16850
+ viewBox: "0 0 20 20",
16851
+ fill: "none",
16852
+ xmlns: "http://www.w3.org/2000/svg"
16853
+ }, /*#__PURE__*/React__default.createElement("circle", {
16854
+ cx: "10",
16855
+ cy: "10",
16856
+ r: "10",
16857
+ fill: color
16858
+ }), /*#__PURE__*/React__default.createElement("path", {
16859
+ fillRule: "evenodd",
16860
+ clipRule: "evenodd",
16861
+ d: "M10.528 14.472C10.7232 14.2768 10.7233 13.9605 10.5283 13.7652L7.39375 10.625H14.5C14.7761 10.625 15 10.4011 15 10.125V9.875C15 9.59886 14.7761 9.375 14.5 9.375H7.39375L10.5283 6.2348C10.7233 6.03949 10.7232 5.72315 10.528 5.52801L10.3536 5.35355C10.1583 5.15829 9.84171 5.15829 9.64645 5.35355L5.35355 9.64645C5.15829 9.84171 5.15829 10.1583 5.35355 10.3536L9.64645 14.6464C9.84171 14.8417 10.1583 14.8417 10.3536 14.6464L10.528 14.472Z",
16862
+ fill: "white"
16863
+ }), /*#__PURE__*/React__default.createElement("mask", {
16864
+ id: id,
16865
+ style: {
16866
+ maskType: "luminance"
16867
+ },
16868
+ maskUnits: "userSpaceOnUse",
16869
+ x: "5",
16870
+ y: "5",
16871
+ width: "10",
16872
+ height: "10"
16873
+ }, /*#__PURE__*/React__default.createElement("path", {
16874
+ fillRule: "evenodd",
16875
+ clipRule: "evenodd",
16876
+ d: "M10.528 14.472C10.7232 14.2768 10.7233 13.9605 10.5283 13.7652L7.39375 10.625H14.5C14.7761 10.625 15 10.4011 15 10.125V9.875C15 9.59886 14.7761 9.375 14.5 9.375H7.39375L10.5283 6.2348C10.7233 6.03949 10.7232 5.72315 10.528 5.52801L10.3536 5.35355C10.1583 5.15829 9.84171 5.15829 9.64645 5.35355L5.35355 9.64645C5.15829 9.84171 5.15829 10.1583 5.35355 10.3536L9.64645 14.6464C9.84171 14.8417 10.1583 14.8417 10.3536 14.6464L10.528 14.472Z",
16877
+ fill: "white"
16878
+ })), /*#__PURE__*/React__default.createElement("g", {
16879
+ mask: "url(#".concat(id, ")")
16880
+ }, /*#__PURE__*/React__default.createElement("rect", {
16881
+ x: "17.5",
16882
+ y: "17.5",
16883
+ width: "15",
16884
+ height: "15",
16885
+ transform: "rotate(180 17.5 17.5)",
16886
+ fill: "white"
16887
+ })));
16888
+ };
16889
+
16890
+ var ArrowRightCircleIconSmall = function ArrowRightCircleIconSmall(_ref) {
16891
+ var _ref$color = _ref.color,
16892
+ color = _ref$color === void 0 ? "#15749D" : _ref$color,
16893
+ _ref$iconIndex = _ref.iconIndex,
16894
+ iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
16895
+ var id = "ArrowRightCircleIconSmall-".concat(iconIndex);
16896
+ return /*#__PURE__*/React__default.createElement("svg", {
16897
+ width: "20",
16898
+ height: "20",
16899
+ viewBox: "0 0 20 20",
16900
+ fill: "none",
16901
+ xmlns: "http://www.w3.org/2000/svg"
16902
+ }, /*#__PURE__*/React__default.createElement("circle", {
16903
+ cx: "10",
16904
+ cy: "10",
16905
+ r: "10",
16906
+ fill: color
16907
+ }), /*#__PURE__*/React__default.createElement("path", {
16908
+ fillRule: "evenodd",
16909
+ clipRule: "evenodd",
16910
+ d: "M9.47199 5.52801C9.27685 5.72315 9.27671 6.03949 9.47167 6.2348L12.6062 9.375H5.5C5.22386 9.375 5 9.59886 5 9.875V10.125C5 10.4011 5.22386 10.625 5.5 10.625H12.6062L9.47167 13.7652C9.27671 13.9605 9.27685 14.2768 9.47199 14.472L9.64645 14.6464C9.84171 14.8417 10.1583 14.8417 10.3536 14.6464L14.6464 10.3536C14.8417 10.1583 14.8417 9.84171 14.6464 9.64645L10.3536 5.35355C10.1583 5.15829 9.84171 5.15829 9.64645 5.35355L9.47199 5.52801Z",
16911
+ fill: "white"
16912
+ }), /*#__PURE__*/React__default.createElement("mask", {
16913
+ id: id,
16914
+ style: {
16915
+ maskType: "luminance"
16916
+ },
16917
+ maskUnits: "userSpaceOnUse",
16918
+ x: "5",
16919
+ y: "5",
16920
+ width: "10",
16921
+ height: "10"
16922
+ }, /*#__PURE__*/React__default.createElement("path", {
16923
+ fillRule: "evenodd",
16924
+ clipRule: "evenodd",
16925
+ d: "M9.47199 5.52801C9.27685 5.72315 9.27671 6.03949 9.47167 6.2348L12.6062 9.375H5.5C5.22386 9.375 5 9.59886 5 9.875V10.125C5 10.4011 5.22386 10.625 5.5 10.625H12.6062L9.47167 13.7652C9.27671 13.9605 9.27685 14.2768 9.47199 14.472L9.64645 14.6464C9.84171 14.8417 10.1583 14.8417 10.3536 14.6464L14.6464 10.3536C14.8417 10.1583 14.8417 9.84171 14.6464 9.64645L10.3536 5.35355C10.1583 5.15829 9.84171 5.15829 9.64645 5.35355L9.47199 5.52801Z",
16926
+ fill: "white"
16927
+ })), /*#__PURE__*/React__default.createElement("g", {
16928
+ mask: "url(#".concat(id, ")")
16929
+ }, /*#__PURE__*/React__default.createElement("rect", {
16930
+ x: "2.5",
16931
+ y: "2.5",
16932
+ width: "15",
16933
+ height: "15",
16934
+ fill: "white"
16935
+ })));
16936
+ };
16937
+
16938
+ var ArrowUpCircleIconSmall = function ArrowUpCircleIconSmall(_ref) {
16939
+ var _ref$color = _ref.color,
16940
+ color = _ref$color === void 0 ? "#15749D" : _ref$color,
16941
+ _ref$iconIndex = _ref.iconIndex,
16942
+ iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
16943
+ var id = "ArrowUpCircleIconSmall-".concat(iconIndex);
16944
+ return /*#__PURE__*/React__default.createElement("svg", {
16945
+ width: "20",
16946
+ height: "20",
16947
+ viewBox: "0 0 20 20",
16948
+ fill: "none",
16949
+ xmlns: "http://www.w3.org/2000/svg"
16950
+ }, /*#__PURE__*/React__default.createElement("circle", {
16951
+ cx: "10",
16952
+ cy: "10",
16953
+ r: "10",
16954
+ fill: color
16955
+ }), /*#__PURE__*/React__default.createElement("path", {
16956
+ fillRule: "evenodd",
16957
+ clipRule: "evenodd",
16958
+ d: "M5.52801 10.528C5.72315 10.7232 6.03949 10.7233 6.2348 10.5283L9.375 7.39375L9.375 14.5C9.375 14.7761 9.59886 15 9.875 15H10.125C10.4011 15 10.625 14.7761 10.625 14.5L10.625 7.39375L13.7652 10.5283C13.9605 10.7233 14.2768 10.7232 14.472 10.528L14.6464 10.3536C14.8417 10.1583 14.8417 9.84171 14.6464 9.64645L10.3536 5.35355C10.1583 5.15829 9.84171 5.15829 9.64645 5.35355L5.35355 9.64645C5.15829 9.84171 5.15829 10.1583 5.35355 10.3536L5.52801 10.528Z",
16959
+ fill: "white"
16960
+ }), /*#__PURE__*/React__default.createElement("mask", {
16961
+ id: id,
16962
+ style: {
16963
+ maskType: "luminance"
16964
+ },
16965
+ maskUnits: "userSpaceOnUse",
16966
+ x: "5",
16967
+ y: "5",
16968
+ width: "10",
16969
+ height: "10"
16970
+ }, /*#__PURE__*/React__default.createElement("path", {
16971
+ fillRule: "evenodd",
16972
+ clipRule: "evenodd",
16973
+ d: "M5.52801 10.528C5.72315 10.7232 6.03949 10.7233 6.2348 10.5283L9.375 7.39375L9.375 14.5C9.375 14.7761 9.59886 15 9.875 15H10.125C10.4011 15 10.625 14.7761 10.625 14.5L10.625 7.39375L13.7652 10.5283C13.9605 10.7233 14.2768 10.7232 14.472 10.528L14.6464 10.3536C14.8417 10.1583 14.8417 9.84171 14.6464 9.64645L10.3536 5.35355C10.1583 5.15829 9.84171 5.15829 9.64645 5.35355L5.35355 9.64645C5.15829 9.84171 5.15829 10.1583 5.35355 10.3536L5.52801 10.528Z",
16974
+ fill: "white"
16975
+ })), /*#__PURE__*/React__default.createElement("g", {
16976
+ mask: "url(#".concat(id, ")")
16977
+ }, /*#__PURE__*/React__default.createElement("rect", {
16978
+ x: "2.5",
16979
+ y: "17.5",
16980
+ width: "15",
16981
+ height: "15",
16982
+ transform: "rotate(-90 2.5 17.5)",
16983
+ fill: "white"
16984
+ })));
16985
+ };
16986
+
16987
+ var ArrowDownCircleIconSmall = function ArrowDownCircleIconSmall(_ref) {
16988
+ var _ref$color = _ref.color,
16989
+ color = _ref$color === void 0 ? "#15749D" : _ref$color,
16990
+ _ref$iconIndex = _ref.iconIndex,
16991
+ iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
16992
+ var id = "ArrowDownCircleIconSmall-".concat(iconIndex);
16993
+ return /*#__PURE__*/React__default.createElement("svg", {
16994
+ width: "20",
16995
+ height: "20",
16996
+ viewBox: "0 0 20 20",
16997
+ fill: "none",
16998
+ xmlns: "http://www.w3.org/2000/svg"
16999
+ }, /*#__PURE__*/React__default.createElement("circle", {
17000
+ cx: "10",
17001
+ cy: "10",
17002
+ r: "10",
17003
+ fill: color
17004
+ }), /*#__PURE__*/React__default.createElement("path", {
17005
+ fillRule: "evenodd",
17006
+ clipRule: "evenodd",
17007
+ d: "M14.6696 9.47199C14.4745 9.27685 14.1581 9.27671 13.9628 9.47167L10.8226 12.6062V5.5C10.8226 5.22386 10.5988 5 10.3226 5H10.0726C9.79649 5 9.57263 5.22386 9.57263 5.5V12.6062L6.43244 9.47167C6.23712 9.27671 5.92078 9.27685 5.72564 9.47199L5.55119 9.64645C5.35592 9.84171 5.35592 10.1583 5.55119 10.3536L9.84408 14.6464C10.0393 14.8417 10.3559 14.8417 10.5512 14.6464L14.8441 10.3536C15.0393 10.1583 15.0393 9.84171 14.8441 9.64645L14.6696 9.47199Z",
17008
+ fill: "white"
17009
+ }), /*#__PURE__*/React__default.createElement("mask", {
17010
+ id: id,
17011
+ style: {
17012
+ maskType: "luminance"
17013
+ },
17014
+ maskUnits: "userSpaceOnUse",
17015
+ x: "5",
17016
+ y: "5",
17017
+ width: "10",
17018
+ height: "10"
17019
+ }, /*#__PURE__*/React__default.createElement("path", {
17020
+ fillRule: "evenodd",
17021
+ clipRule: "evenodd",
17022
+ d: "M14.6696 9.47199C14.4745 9.27685 14.1581 9.27671 13.9628 9.47167L10.8226 12.6062V5.5C10.8226 5.22386 10.5988 5 10.3226 5H10.0726C9.79649 5 9.57263 5.22386 9.57263 5.5V12.6062L6.43244 9.47167C6.23712 9.27671 5.92078 9.27685 5.72564 9.47199L5.55119 9.64645C5.35592 9.84171 5.35592 10.1583 5.55119 10.3536L9.84408 14.6464C10.0393 14.8417 10.3559 14.8417 10.5512 14.6464L14.8441 10.3536C15.0393 10.1583 15.0393 9.84171 14.8441 9.64645L14.6696 9.47199Z",
17023
+ fill: "white"
17024
+ })), /*#__PURE__*/React__default.createElement("g", {
17025
+ mask: "url(#".concat(id, ")")
17026
+ }, /*#__PURE__*/React__default.createElement("rect", {
17027
+ x: "17.6976",
17028
+ y: "2.5",
17029
+ width: "15",
17030
+ height: "15",
17031
+ transform: "rotate(90 17.6976 2.5)",
17032
+ fill: "white"
17033
+ })));
17034
+ };
17035
+
17036
+ var SuccessfulIconMedium = function SuccessfulIconMedium(_ref) {
17037
+ var _ref$iconIndex = _ref.iconIndex,
17038
+ iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
17039
+ var mask0ID = "SuccessfulIconMedium-mask0-".concat(iconIndex);
17040
+ var mask1ID = "SuccessfulIconMedium-mask1-".concat(iconIndex);
17041
+ return /*#__PURE__*/React__default.createElement("svg", {
17042
+ width: "24",
17043
+ height: "24",
17044
+ viewBox: "0 0 24 24",
17045
+ fill: "none",
17046
+ xmlns: "http://www.w3.org/2000/svg"
17047
+ }, /*#__PURE__*/React__default.createElement("circle", {
17048
+ cx: "12",
17049
+ cy: "12",
17050
+ r: "12",
17051
+ fill: "#317D4F"
17052
+ }), /*#__PURE__*/React__default.createElement("mask", {
17053
+ id: mask0ID,
17054
+ style: {
17055
+ maskType: "luminance"
17056
+ },
17057
+ maskUnits: "userSpaceOnUse",
17058
+ x: "0",
17059
+ y: "0",
17060
+ width: "24",
17061
+ height: "24"
17062
+ }, /*#__PURE__*/React__default.createElement("circle", {
17063
+ cx: "12",
17064
+ cy: "12",
17065
+ r: "12",
17066
+ fill: "white"
17067
+ })), /*#__PURE__*/React__default.createElement("g", {
17068
+ mask: "url(#".concat(mask0ID, ")")
17069
+ }, /*#__PURE__*/React__default.createElement("path", {
17070
+ fillRule: "evenodd",
17071
+ clipRule: "evenodd",
17072
+ d: "M17.6672 7.35354C17.472 7.15828 17.1554 7.15828 16.9601 7.35354L10.2426 14.0711L7.76775 11.5962C7.57249 11.4009 7.25591 11.4009 7.06065 11.5962L6.35354 12.3033C6.15828 12.4985 6.15828 12.8151 6.35354 13.0104L9.18167 15.8385C9.18177 15.8386 9.18187 15.8387 9.18197 15.8388L9.88907 16.5459C10.0843 16.7412 10.4009 16.7412 10.5962 16.5459L11.3033 15.8388C11.3034 15.8387 11.3036 15.8386 11.3037 15.8384L18.3744 8.76775C18.5696 8.57249 18.5696 8.25591 18.3744 8.06065L17.6672 7.35354Z",
17073
+ fill: "white"
17074
+ }), /*#__PURE__*/React__default.createElement("mask", {
17075
+ id: mask1ID,
17076
+ style: {
17077
+ maskType: "luminance"
17078
+ },
17079
+ maskUnits: "userSpaceOnUse",
17080
+ x: "6",
17081
+ y: "7",
17082
+ width: "13",
17083
+ height: "10"
17084
+ }, /*#__PURE__*/React__default.createElement("path", {
17085
+ fillRule: "evenodd",
17086
+ clipRule: "evenodd",
17087
+ d: "M17.6672 7.35354C17.472 7.15828 17.1554 7.15828 16.9601 7.35354L10.2426 14.0711L7.76775 11.5962C7.57249 11.4009 7.25591 11.4009 7.06065 11.5962L6.35354 12.3033C6.15828 12.4985 6.15828 12.8151 6.35354 13.0104L9.18167 15.8385C9.18177 15.8386 9.18187 15.8387 9.18197 15.8388L9.88907 16.5459C10.0843 16.7412 10.4009 16.7412 10.5962 16.5459L11.3033 15.8388C11.3034 15.8387 11.3036 15.8386 11.3037 15.8384L18.3744 8.76775C18.5696 8.57249 18.5696 8.25591 18.3744 8.06065L17.6672 7.35354Z",
17088
+ fill: "white"
17089
+ })), /*#__PURE__*/React__default.createElement("g", {
17090
+ mask: "url(#".concat(mask1ID, ")")
17091
+ }, /*#__PURE__*/React__default.createElement("rect", {
17092
+ x: "2",
17093
+ y: "2",
17094
+ width: "20",
17095
+ height: "20",
17096
+ fill: "white"
17097
+ }))));
17098
+ };
17099
+
17100
+ var XCircleIconMedium = function XCircleIconMedium(_ref) {
17101
+ var _ref$color = _ref.color,
17102
+ color = _ref$color === void 0 ? "#D11053" : _ref$color,
17103
+ _ref$iconIndex = _ref.iconIndex,
17104
+ iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
17105
+ var id = "XCircleIconMedium-".concat(iconIndex);
17106
+ return /*#__PURE__*/React__default.createElement("svg", {
17107
+ width: "24",
17108
+ height: "24",
17109
+ viewBox: "0 0 24 24",
17110
+ fill: "none",
17111
+ xmlns: "http://www.w3.org/2000/svg"
17112
+ }, /*#__PURE__*/React__default.createElement("circle", {
17113
+ cx: "12",
17114
+ cy: "12",
17115
+ r: "12",
17116
+ fill: color
17117
+ }), /*#__PURE__*/React__default.createElement("path", {
17118
+ fillRule: "evenodd",
17119
+ clipRule: "evenodd",
17120
+ d: "M7.35355 8.07502C7.15829 8.27028 7.15829 8.58686 7.35355 8.78212L10.5714 12L7.35355 15.2179C7.15829 15.4131 7.15829 15.7297 7.35355 15.925L8.07502 16.6464C8.27028 16.8417 8.58686 16.8417 8.78212 16.6464L12 13.4286L15.2179 16.6464C15.4131 16.8417 15.7297 16.8417 15.925 16.6464L16.6464 15.925C16.8417 15.7297 16.8417 15.4131 16.6464 15.2179L13.4286 12L16.6464 8.78212C16.8417 8.58686 16.8417 8.27028 16.6464 8.07502L15.925 7.35355C15.7297 7.15829 15.4131 7.15829 15.2179 7.35355L12 10.5714L8.78212 7.35355C8.58686 7.15829 8.27028 7.15829 8.07502 7.35355L7.35355 8.07502Z",
17121
+ fill: "white"
17122
+ }), /*#__PURE__*/React__default.createElement("mask", {
17123
+ id: id,
17124
+ style: {
17125
+ maskType: "luminance"
17126
+ },
17127
+ maskUnits: "userSpaceOnUse",
17128
+ x: "7",
17129
+ y: "7",
17130
+ width: "10",
17131
+ height: "10"
17132
+ }, /*#__PURE__*/React__default.createElement("path", {
17133
+ fillRule: "evenodd",
17134
+ clipRule: "evenodd",
17135
+ d: "M7.35355 8.07502C7.15829 8.27028 7.15829 8.58686 7.35355 8.78212L10.5714 12L7.35355 15.2179C7.15829 15.4131 7.15829 15.7297 7.35355 15.925L8.07502 16.6464C8.27028 16.8417 8.58686 16.8417 8.78212 16.6464L12 13.4286L15.2179 16.6464C15.4131 16.8417 15.7297 16.8417 15.925 16.6464L16.6464 15.925C16.8417 15.7297 16.8417 15.4131 16.6464 15.2179L13.4286 12L16.6464 8.78212C16.8417 8.58686 16.8417 8.27028 16.6464 8.07502L15.925 7.35355C15.7297 7.15829 15.4131 7.15829 15.2179 7.35355L12 10.5714L8.78212 7.35355C8.58686 7.15829 8.27028 7.15829 8.07502 7.35355L7.35355 8.07502Z",
17136
+ fill: "white"
17137
+ })), /*#__PURE__*/React__default.createElement("g", {
17138
+ mask: "url(#".concat(id, ")")
17139
+ }, /*#__PURE__*/React__default.createElement("path", {
17140
+ d: "M0 0H24V24H0V0Z",
17141
+ fill: "white"
17142
+ })));
17143
+ };
17144
+
17145
+ var RefundIconMedium = function RefundIconMedium(_ref) {
17146
+ var _ref$color = _ref.color,
17147
+ color = _ref$color === void 0 ? "#15749D" : _ref$color,
17148
+ _ref$iconIndex = _ref.iconIndex,
17149
+ iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
17150
+ var id = "RefundIconMedium-".concat(iconIndex);
17151
+ return /*#__PURE__*/React__default.createElement("svg", {
17152
+ width: "24",
17153
+ height: "24",
17154
+ viewBox: "0 0 24 24",
17155
+ fill: "none",
17156
+ xmlns: "http://www.w3.org/2000/svg"
17157
+ }, /*#__PURE__*/React__default.createElement("circle", {
17158
+ cx: "12",
17159
+ cy: "12",
17160
+ r: "12",
17161
+ fill: color
17162
+ }), /*#__PURE__*/React__default.createElement("path", {
17163
+ fillRule: "evenodd",
17164
+ clipRule: "evenodd",
17165
+ d: "M15.0975 16.8351V18H13.4122V16.8416C11.5797 16.6399 10.396 15.7549 10.2154 14.1085L12.2485 14.0694C12.4558 14.9284 13.2049 15.3839 14.2749 15.3839C15.2379 15.3839 15.9268 14.8829 15.9268 14.2126C15.9268 13.5163 15.4787 13.2299 14.5357 13.0217L12.9507 12.6898C11.4727 12.397 10.523 11.5575 10.503 10.1128C10.4896 8.57701 11.7202 7.5423 13.4456 7.2885V6H15.1376V7.29501C16.823 7.58134 17.8462 8.70065 17.8261 10.0477L15.8532 10.0803C15.7328 9.24729 15.345 8.7397 14.315 8.7397C13.2517 8.7397 12.5963 9.20824 12.5963 9.89154C12.5963 10.4382 12.9039 10.7115 13.9539 10.9783L15.5121 11.3492C17.271 11.7592 18 12.7874 18 14.1996C18 15.6182 16.8831 16.6074 15.0975 16.8351ZM9.00001 13.8125C9.00001 14.2245 8.52963 14.4597 8.20001 14.2125L5.53334 12.2125C5.26668 12.0125 5.26668 11.6125 5.53334 11.4125L8.20001 9.4125C8.52963 9.16529 9.00001 9.40048 9.00001 9.8125V13.8125Z",
17166
+ fill: "white"
17167
+ }), /*#__PURE__*/React__default.createElement("mask", {
17168
+ id: id,
17169
+ style: {
17170
+ maskType: "luminance"
17171
+ },
17172
+ maskUnits: "userSpaceOnUse",
17173
+ x: "5",
17174
+ y: "6",
17175
+ width: "13",
17176
+ height: "12"
17177
+ }, /*#__PURE__*/React__default.createElement("path", {
17178
+ fillRule: "evenodd",
17179
+ clipRule: "evenodd",
17180
+ d: "M15.0975 16.8351V18H13.4122V16.8416C11.5797 16.6399 10.396 15.7549 10.2154 14.1085L12.2485 14.0694C12.4558 14.9284 13.2049 15.3839 14.2749 15.3839C15.2379 15.3839 15.9268 14.8829 15.9268 14.2126C15.9268 13.5163 15.4787 13.2299 14.5357 13.0217L12.9507 12.6898C11.4727 12.397 10.523 11.5575 10.503 10.1128C10.4896 8.57701 11.7202 7.5423 13.4456 7.2885V6H15.1376V7.29501C16.823 7.58134 17.8462 8.70065 17.8261 10.0477L15.8532 10.0803C15.7328 9.24729 15.345 8.7397 14.315 8.7397C13.2517 8.7397 12.5963 9.20824 12.5963 9.89154C12.5963 10.4382 12.9039 10.7115 13.9539 10.9783L15.5121 11.3492C17.271 11.7592 18 12.7874 18 14.1996C18 15.6182 16.8831 16.6074 15.0975 16.8351ZM9.00001 13.8125C9.00001 14.2245 8.52963 14.4597 8.20001 14.2125L5.53334 12.2125C5.26668 12.0125 5.26668 11.6125 5.53334 11.4125L8.20001 9.4125C8.52963 9.16529 9.00001 9.40048 9.00001 9.8125V13.8125Z",
17181
+ fill: "white"
17182
+ })), /*#__PURE__*/React__default.createElement("g", {
17183
+ mask: "url(#".concat(id, ")")
17184
+ }, /*#__PURE__*/React__default.createElement("rect", {
17185
+ x: "3",
17186
+ y: "3",
17187
+ width: "18",
17188
+ height: "18",
17189
+ fill: "white"
17190
+ })));
17191
+ };
17192
+
17193
+ var ArrowLeftCircleIconMedium = function ArrowLeftCircleIconMedium(_ref) {
17194
+ var _ref$color = _ref.color,
17195
+ color = _ref$color === void 0 ? "#15749D" : _ref$color,
17196
+ _ref$iconIndex = _ref.iconIndex,
17197
+ iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
17198
+ var id = "ArrowLeftCircleIconMedium-".concat(iconIndex);
17199
+ return /*#__PURE__*/React__default.createElement("svg", {
17200
+ width: "24",
17201
+ height: "24",
17202
+ viewBox: "0 0 24 24",
17203
+ fill: "none",
17204
+ xmlns: "http://www.w3.org/2000/svg"
17205
+ }, /*#__PURE__*/React__default.createElement("circle", {
17206
+ cx: "12",
17207
+ cy: "12",
17208
+ r: "12",
17209
+ fill: color
17210
+ }), /*#__PURE__*/React__default.createElement("path", {
17211
+ fillRule: "evenodd",
17212
+ clipRule: "evenodd",
17213
+ d: "M12.7043 17.2957C12.8994 17.1006 12.8995 16.7843 12.7046 16.5889L8.8725 12.75H17.5C17.7761 12.75 18 12.5261 18 12.25V11.75C18 11.4739 17.7761 11.25 17.5 11.25H8.8725L12.7046 7.41105C12.8995 7.21574 12.8994 6.8994 12.7043 6.70426L12.3536 6.35355C12.1583 6.15829 11.8417 6.15829 11.6464 6.35355L6.35355 11.6464C6.15829 11.8417 6.15829 12.1583 6.35355 12.3536L11.6464 17.6464C11.8417 17.8417 12.1583 17.8417 12.3536 17.6464L12.7043 17.2957Z",
17214
+ fill: "white"
17215
+ }), /*#__PURE__*/React__default.createElement("mask", {
17216
+ id: id,
17217
+ style: {
17218
+ maskType: "luminance"
17219
+ },
17220
+ maskUnits: "userSpaceOnUse",
17221
+ x: "6",
17222
+ y: "6",
17223
+ width: "12",
17224
+ height: "12"
17225
+ }, /*#__PURE__*/React__default.createElement("path", {
17226
+ fillRule: "evenodd",
17227
+ clipRule: "evenodd",
17228
+ d: "M12.7043 17.2957C12.8994 17.1006 12.8995 16.7843 12.7046 16.5889L8.8725 12.75H17.5C17.7761 12.75 18 12.5261 18 12.25V11.75C18 11.4739 17.7761 11.25 17.5 11.25H8.8725L12.7046 7.41105C12.8995 7.21574 12.8994 6.8994 12.7043 6.70426L12.3536 6.35355C12.1583 6.15829 11.8417 6.15829 11.6464 6.35355L6.35355 11.6464C6.15829 11.8417 6.15829 12.1583 6.35355 12.3536L11.6464 17.6464C11.8417 17.8417 12.1583 17.8417 12.3536 17.6464L12.7043 17.2957Z",
17229
+ fill: "white"
17230
+ })), /*#__PURE__*/React__default.createElement("g", {
17231
+ mask: "url(#".concat(id, ")")
17232
+ }, /*#__PURE__*/React__default.createElement("rect", {
17233
+ x: "21",
17234
+ y: "21",
17235
+ width: "18",
17236
+ height: "18",
17237
+ transform: "rotate(180 21 21)",
17238
+ fill: "white"
17239
+ })));
17240
+ };
17241
+
17242
+ var ChargebackIconMedium = function ChargebackIconMedium(_ref) {
17243
+ var _ref$color = _ref.color,
17244
+ color = _ref$color === void 0 ? "#15749D" : _ref$color,
17245
+ _ref$iconIndex = _ref.iconIndex,
17246
+ iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
17247
+ var id = "ChargebackIconMedium-".concat(iconIndex);
17248
+ return /*#__PURE__*/React__default.createElement("svg", {
17249
+ width: "24",
17250
+ height: "24",
17251
+ viewBox: "0 0 24 24",
17252
+ fill: "none",
17253
+ xmlns: "http://www.w3.org/2000/svg"
17254
+ }, /*#__PURE__*/React__default.createElement("circle", {
17255
+ cx: "12",
17256
+ cy: "12",
17257
+ r: "12",
17258
+ fill: color
17259
+ }), /*#__PURE__*/React__default.createElement("mask", {
17260
+ id: id,
17261
+ style: {
17262
+ maskType: "luminance"
17263
+ },
17264
+ maskUnits: "userSpaceOnUse",
17265
+ x: "3",
17266
+ y: "7",
17267
+ width: "17",
17268
+ height: "10"
17269
+ }, /*#__PURE__*/React__default.createElement("path", {
17270
+ fillRule: "evenodd",
17271
+ clipRule: "evenodd",
17272
+ d: "M7.99999 8C7.99999 7.44772 8.4477 7 8.99999 7H19C19.5523 7 20 7.44772 20 8V10V12V16C20 16.5523 19.5523 17 19 17H8.99999C8.4477 17 7.99999 16.5523 7.99999 16V12V10V8ZM19.25 7.83333V10H8.74999V9.91667V7.83333H19.25ZM8.74999 16.1667V12H19.25V16.1667H8.74999ZM5.79295 10.2071C5.79295 9.76165 5.25438 9.53857 4.9394 9.85355L3.14651 11.6464C2.95125 11.8417 2.95125 12.1583 3.14651 12.3536L4.9394 14.1464C5.25438 14.4614 5.79295 14.2383 5.79295 13.7929V10.2071ZM16.1875 14C15.9113 14 15.6875 14.2239 15.6875 14.5C15.6875 14.7761 15.9113 15 16.1875 15H17.4375C17.7136 15 17.9375 14.7761 17.9375 14.5C17.9375 14.2239 17.7136 14 17.4375 14H16.1875Z",
17273
+ fill: "white"
17274
+ })), /*#__PURE__*/React__default.createElement("g", {
17275
+ mask: "url(#".concat(id, ")")
17276
+ }, /*#__PURE__*/React__default.createElement("rect", {
17277
+ x: "3",
17278
+ y: "3",
17279
+ width: "18",
17280
+ height: "18",
17281
+ fill: "white"
17282
+ })));
17283
+ };
17284
+
17285
+ var ChargebackReversalIconMedium = function ChargebackReversalIconMedium(_ref) {
17286
+ var _ref$color = _ref.color,
17287
+ color = _ref$color === void 0 ? "#15749D" : _ref$color,
17288
+ _ref$iconIndex = _ref.iconIndex,
17289
+ iconIndex = _ref$iconIndex === void 0 ? 0 : _ref$iconIndex;
17290
+ var id = "ChargebackReversalIconMedium-".concat(iconIndex);
17291
+ return /*#__PURE__*/React__default.createElement("svg", {
17292
+ width: "24",
17293
+ height: "24",
17294
+ viewBox: "0 0 24 24",
17295
+ fill: "none",
17296
+ xmlns: "http://www.w3.org/2000/svg"
17297
+ }, /*#__PURE__*/React__default.createElement("circle", {
17298
+ cx: "12",
17299
+ cy: "12",
17300
+ r: "12",
17301
+ fill: color
17302
+ }), /*#__PURE__*/React__default.createElement("mask", {
17303
+ id: id,
17304
+ style: {
17305
+ maskType: "luminance"
17306
+ },
17307
+ maskUnits: "userSpaceOnUse",
17308
+ x: "5",
17309
+ y: "7",
17310
+ width: "16",
17311
+ height: "10"
17312
+ }, /*#__PURE__*/React__default.createElement("path", {
17313
+ fillRule: "evenodd",
17314
+ clipRule: "evenodd",
17315
+ d: "M5 8C5 7.44772 5.44772 7 6 7H16C16.5523 7 17 7.44772 17 8V10V12V16C17 16.5523 16.5523 17 16 17H6C5.44772 17 5 16.5523 5 16V12V10V8ZM16.25 7.83333V10H5.75V9.91667V7.83333H16.25ZM5.75 16.1667V12H16.25V16.1667H5.75ZM18 13.7929C18 14.2383 18.5386 14.4614 18.8536 14.1464L20.6464 12.3536C20.8417 12.1583 20.8417 11.8417 20.6464 11.6464L18.8536 9.85355C18.5386 9.53857 18 9.76165 18 10.2071V13.7929ZM13.1875 14C12.9114 14 12.6875 14.2239 12.6875 14.5C12.6875 14.7761 12.9114 15 13.1875 15H14.4375C14.7136 15 14.9375 14.7761 14.9375 14.5C14.9375 14.2239 14.7136 14 14.4375 14H13.1875Z",
17316
+ fill: "white"
17317
+ })), /*#__PURE__*/React__default.createElement("g", {
17318
+ mask: "url(#".concat(id, ")")
17319
+ }, /*#__PURE__*/React__default.createElement("rect", {
17320
+ x: "3",
17321
+ y: "3",
17322
+ width: "18",
17323
+ height: "18",
17324
+ fill: "white"
17325
+ })));
17326
+ };
17327
+
16485
17328
  var color$2 = "#15749D";
16486
17329
  var hoverColor$1 = "#116285";
16487
17330
  var activeColor$1 = "#0E506D";
@@ -20176,7 +21019,7 @@ var CheckboxContainer = styled__default.div.withConfig({
20176
21019
  var CheckboxLabelContainer = styled__default.label.withConfig({
20177
21020
  displayName: "Checkbox__CheckboxLabelContainer",
20178
21021
  componentId: "sc-36kqbv-1"
20179
- })(["display:flex;align-items:center;"]);
21022
+ })(["display:flex;align-items:center;column-gap:1rem;"]);
20180
21023
  var CheckboxIcon = styled__default.svg.withConfig({
20181
21024
  displayName: "Checkbox__CheckboxIcon",
20182
21025
  componentId: "sc-36kqbv-2"
@@ -20195,7 +21038,7 @@ var HiddenCheckbox = styled__default.input.attrs({
20195
21038
  var StyledCheckbox = styled__default.div.withConfig({
20196
21039
  displayName: "Checkbox__StyledCheckbox",
20197
21040
  componentId: "sc-36kqbv-4"
20198
- })(["display:inline-block;margin-right:16px;width:24px;height:24px;border-radius:2px;transition:all 150ms;", "{visibility:", ";}", ";"], CheckboxIcon, function (_ref2) {
21041
+ })(["display:inline-block;width:24px;height:24px;border-radius:2px;transition:all 150ms;", "{visibility:", ";}", ";"], CheckboxIcon, function (_ref2) {
20199
21042
  var checked = _ref2.checked;
20200
21043
  return checked ? "visible" : "hidden";
20201
21044
  }, function (_ref3) {
@@ -20225,6 +21068,8 @@ var Checkbox = function Checkbox(_ref4) {
20225
21068
  hidden = _ref4$hidden === void 0 ? false : _ref4$hidden,
20226
21069
  _ref4$error = _ref4.error,
20227
21070
  error = _ref4$error === void 0 ? false : _ref4$error,
21071
+ _ref4$checkboxMargin = _ref4.checkboxMargin,
21072
+ checkboxMargin = _ref4$checkboxMargin === void 0 ? "0 16px 0 0" : _ref4$checkboxMargin,
20228
21073
  extraStyles = _ref4.extraStyles,
20229
21074
  textExtraStyles = _ref4.textExtraStyles;
20230
21075
 
@@ -20253,7 +21098,7 @@ var Checkbox = function Checkbox(_ref4) {
20253
21098
  },
20254
21099
  hiddenStyles: hidden,
20255
21100
  background: themeValues.backgroundColor,
20256
- extraStyles: "outline: none; ".concat(extraStyles)
21101
+ extraStyles: "outline: none; ".concat(extraStyles, "; margin: ").concat(checkboxMargin, ";")
20257
21102
  }, /*#__PURE__*/React__default.createElement(CheckboxLabelContainer, null, /*#__PURE__*/React__default.createElement(CheckboxContainer, {
20258
21103
  "data-qa": "Checkbox"
20259
21104
  }, /*#__PURE__*/React__default.createElement(HiddenCheckbox, {
@@ -20265,7 +21110,7 @@ var Checkbox = function Checkbox(_ref4) {
20265
21110
  onChange: onChange,
20266
21111
  tabIndex: "-1",
20267
21112
  "aria-invalid": error,
20268
- "aria-describedby": "".concat(name, "-error-message")
21113
+ "aria-describedby": error ? "".concat(name, "-error-message") : ""
20269
21114
  }), /*#__PURE__*/React__default.createElement(StyledCheckbox, {
20270
21115
  error: error,
20271
21116
  disabled: disabled,
@@ -20284,7 +21129,7 @@ var Checkbox = function Checkbox(_ref4) {
20284
21129
  checkColor: themeValues.checkColor
20285
21130
  }, /*#__PURE__*/React__default.createElement("polyline", {
20286
21131
  points: "20 6 9 17 4 12"
20287
- })))), /*#__PURE__*/React__default.createElement(Text$1, {
21132
+ })))), title && /*#__PURE__*/React__default.createElement(Text$1, {
20288
21133
  variant: "p",
20289
21134
  weight: themeValues.textFontWeight,
20290
21135
  color: themeValues.textColor,
@@ -23569,6 +24414,40 @@ var creditCardFormat = createFormat(creditCardFormats, formatDelimiter);
23569
24414
  var expirationDateFormat = createFormat(expirationDateFormats, formatDelimiter);
23570
24415
  var phoneFormat = createFormat(phoneFormats, formatDelimiter);
23571
24416
  var moneyFormat = createFormat(moneyFormats, formatDelimiter);
24417
+ var renderCardStatus = function renderCardStatus(expirationStatus, expireDate) {
24418
+ var textAlign = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : "right";
24419
+ var as = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : "span";
24420
+ var ACTIVE = "ACTIVE";
24421
+ var EXPIRING_SOON = "EXPIRING_SOON";
24422
+ var EXPIRED = "EXPIRED";
24423
+ var textMargin = textAlign === "right" ? "auto" : "0";
24424
+
24425
+ switch (expirationStatus) {
24426
+ case ACTIVE:
24427
+ return /*#__PURE__*/React__default.createElement(Text$1, {
24428
+ as: as,
24429
+ variant: "pXS",
24430
+ color: ASH_GREY,
24431
+ extraStyles: "text-align: ".concat(textAlign, "; margin: ").concat(textMargin, ";")
24432
+ }, "Exp Date ", expireDate);
24433
+
24434
+ case EXPIRING_SOON:
24435
+ return /*#__PURE__*/React__default.createElement(Text$1, {
24436
+ as: as,
24437
+ variant: "pXS",
24438
+ color: FIRE_YELLOW,
24439
+ extraStyles: "text-align: ".concat(textAlign, "; margin: ").concat(textMargin, ";")
24440
+ }, "Expiring Soon ", expireDate);
24441
+
24442
+ case EXPIRED:
24443
+ return /*#__PURE__*/React__default.createElement(Text$1, {
24444
+ as: as,
24445
+ variant: "pXS",
24446
+ color: ASH_GREY,
24447
+ extraStyles: "text-align: ".concat(textAlign, "; margin: ").concat(textMargin, ";")
24448
+ }, "Expired");
24449
+ }
24450
+ };
23572
24451
 
23573
24452
  var formats = /*#__PURE__*/Object.freeze({
23574
24453
  __proto__: null,
@@ -23580,7 +24459,8 @@ var formats = /*#__PURE__*/Object.freeze({
23580
24459
  creditCardFormat: creditCardFormat,
23581
24460
  expirationDateFormat: expirationDateFormat,
23582
24461
  phoneFormat: phoneFormat,
23583
- moneyFormat: moneyFormat
24462
+ moneyFormat: moneyFormat,
24463
+ renderCardStatus: renderCardStatus
23584
24464
  });
23585
24465
 
23586
24466
  var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
@@ -23640,10 +24520,10 @@ var fallbackValues$i = {
23640
24520
  popoverTriggerColor: popoverTriggerColor
23641
24521
  };
23642
24522
 
23643
- var arrowBorder = function arrowBorder(direction) {
23644
- var width = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : "8px";
24523
+ var arrowBorder = function arrowBorder(borderColor, direction) {
24524
+ var width = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : "8px";
23645
24525
  var angle = "".concat(width, " solid transparent");
23646
- var straight = "".concat(width, " solid rgba(255, 255, 255, 0.85)");
24526
+ var straight = "".concat(width, " solid ").concat(borderColor);
23647
24527
 
23648
24528
  if (direction == "down") {
23649
24529
  return "border-left: ".concat(angle, "; border-right: ").concat(angle, "; border-top: ").concat(straight);
@@ -23685,7 +24565,12 @@ var Popover = function Popover(_ref) {
23685
24565
  arrowDirection = _ref$arrowDirection === void 0 ? "down" : _ref$arrowDirection,
23686
24566
  _ref$transform = _ref.transform,
23687
24567
  transform = _ref$transform === void 0 ? "none" : _ref$transform,
23688
- buttonExtraStyles = _ref.buttonExtraStyles;
24568
+ buttonExtraStyles = _ref.buttonExtraStyles,
24569
+ _ref$backgroundColor = _ref.backgroundColor,
24570
+ backgroundColor = _ref$backgroundColor === void 0 ? "white" : _ref$backgroundColor,
24571
+ _ref$borderColor = _ref.borderColor,
24572
+ borderColor = _ref$borderColor === void 0 ? "rgba(255, 255, 255, 0.85)" : _ref$borderColor,
24573
+ popoverExtraStyles = _ref.popoverExtraStyles;
23689
24574
  var hoverColor = themeValues.hoverColor,
23690
24575
  activeColor = themeValues.activeColor,
23691
24576
  popoverTriggerColor = themeValues.popoverTriggerColor;
@@ -23771,7 +24656,7 @@ var Popover = function Popover(_ref) {
23771
24656
  color: popoverTriggerColor,
23772
24657
  extraStyles: "&:active { color: ".concat(activeColor, "; } &:hover { color: ").concat(hoverColor, " }; ").concat(textExtraStyles)
23773
24658
  }, triggerText)), /*#__PURE__*/React__default.createElement(Box, {
23774
- background: "white",
24659
+ background: backgroundColor,
23775
24660
  borderRadius: "4px",
23776
24661
  boxShadow: "0px 2px 14px 0px rgb(246, 246, 249), 0px 3px 8px 0px rgb(202, 206, 216)",
23777
24662
  id: "Disclosed".concat(popoverID),
@@ -23780,10 +24665,10 @@ var Popover = function Popover(_ref) {
23780
24665
  tabIndex: popoverFocus && popoverOpen ? "0" : "-1",
23781
24666
  minWidth: minWidth,
23782
24667
  maxWidth: maxWidth,
23783
- extraStyles: "\n display: ".concat(popoverOpen ? "block" : "none", "; \n position: absolute; \n top: ").concat(top, "; \n right: ").concat(right, "; \n bottom: ").concat(bottom, "; \n left: ").concat(left, ";\n height: ").concat(height, ";\n transform: ").concat(transform, ";\n ")
24668
+ extraStyles: "\n display: ".concat(popoverOpen ? "block" : "none", "; \n position: absolute; \n top: ").concat(top, "; \n right: ").concat(right, "; \n bottom: ").concat(bottom, "; \n left: ").concat(left, ";\n height: ").concat(height, ";\n transform: ").concat(transform, ";\n ").concat(popoverExtraStyles, ";\n ")
23784
24669
  }, /*#__PURE__*/React__default.createElement(Paragraph$1, null, content), /*#__PURE__*/React__default.createElement(Box, {
23785
24670
  padding: "0",
23786
- extraStyles: "\n position: absolute;\n content: \"\";\n width: 0;\n height: 0;\n ".concat(arrowBorder(arrowDirection, "8px"), ";\n filter: drop-shadow(2px 8px 14px black);\n bottom: ").concat(arrowBottom, ";\n right: ").concat(arrowRight, ";\n top: ").concat(arrowTop, ";\n left: ").concat(arrowLeft, ";\n ")
24671
+ extraStyles: "\n position: absolute;\n content: \"\";\n width: 0;\n height: 0;\n ".concat(arrowBorder(borderColor, arrowDirection, "8px"), ";\n filter: drop-shadow(2px 8px 14px black);\n bottom: ").concat(arrowBottom, ";\n right: ").concat(arrowRight, ";\n top: ").concat(arrowTop, ";\n left: ").concat(arrowLeft, ";\n ")
23787
24672
  })));
23788
24673
  };
23789
24674
 
@@ -24273,9 +25158,50 @@ var fallbackValues$l = {
24273
25158
  autopayTextColor: autopayTextColor
24274
25159
  };
24275
25160
 
24276
- var ACTIVE = "ACTIVE";
24277
- var EXPIRING_SOON = "EXPIRING_SOON";
24278
- var EXPIRED = "EXPIRED";
25161
+ var BankItemWrapper = styled__default.div.withConfig({
25162
+ displayName: "FormattedBankAccount__BankItemWrapper",
25163
+ componentId: "sc-18hcgw4-0"
25164
+ })(["display:flex;justify-content:flex-start;align-items:center;"]);
25165
+ var BankAccountText = styled__default.h4.withConfig({
25166
+ displayName: "FormattedBankAccount__BankAccountText",
25167
+ componentId: "sc-18hcgw4-1"
25168
+ })(["color:", ";font-size:1rem;font-weight:400;line-height:1.5rem;text-align:left;margin-right:0.5rem;display:inline-block;"], function (_ref) {
25169
+ var color = _ref.color;
25170
+ return color;
25171
+ });
25172
+ var CHECKING = "CHECKING";
25173
+ var SAVINGS = "SAVINGS";
25174
+
25175
+ var FormattedBankAccount = function FormattedBankAccount(_ref2) {
25176
+ var lastFour = _ref2.lastFour,
25177
+ accountType = _ref2.accountType,
25178
+ autoPay = _ref2.autoPay,
25179
+ themeValues = _ref2.themeValues;
25180
+ return /*#__PURE__*/React__default.createElement(BankItemWrapper, null, /*#__PURE__*/React__default.createElement(Box, {
25181
+ padding: "0.25rem 0 0 0",
25182
+ extraStyles: "margin-right: 1rem;"
25183
+ }, /*#__PURE__*/React__default.createElement(BankIcon, null)), /*#__PURE__*/React__default.createElement(Stack, {
25184
+ childGap: "0"
25185
+ }, accountType === CHECKING && /*#__PURE__*/React__default.createElement(BankAccountText, {
25186
+ color: themeValues.textColor
25187
+ }, "Checking Account ending in ", lastFour), accountType === SAVINGS && /*#__PURE__*/React__default.createElement(BankAccountText, {
25188
+ color: themeValues.textColor
25189
+ }, "Savings Account ending in ", lastFour), autoPay && /*#__PURE__*/React__default.createElement(Text$1, {
25190
+ variant: "p",
25191
+ color: themeValues.autopayTextColor,
25192
+ extraStyles: "font-style: italic;"
25193
+ }, "Autopay Enabled")));
25194
+ };
25195
+
25196
+ var FormattedBankAccount$1 = themeComponent(FormattedBankAccount, "FormattedBankAccount", fallbackValues$l);
25197
+
25198
+ var textColor$2 = "".concat(CHARADE_GREY);
25199
+ var autopayTextColor$1 = "".concat(REGENT_GREY);
25200
+ var fallbackValues$m = {
25201
+ textColor: textColor$2,
25202
+ autopayTextColor: autopayTextColor$1
25203
+ };
25204
+
24279
25205
  var CreditCardWrapper = styled__default.div.withConfig({
24280
25206
  displayName: "FormattedCreditCard__CreditCardWrapper",
24281
25207
  componentId: "sc-s0ta5l-0"
@@ -24291,32 +25217,6 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
24291
25217
  expireDate = _ref.expireDate,
24292
25218
  expirationStatus = _ref.expirationStatus,
24293
25219
  themeValues = _ref.themeValues;
24294
-
24295
- var renderCardStatus = function renderCardStatus() {
24296
- switch (expirationStatus) {
24297
- case ACTIVE:
24298
- return /*#__PURE__*/React__default.createElement(Paragraph$1, {
24299
- variant: "pXS",
24300
- color: ASH_GREY,
24301
- textAlign: "left"
24302
- }, "Exp Date ", expireDate);
24303
-
24304
- case EXPIRING_SOON:
24305
- return /*#__PURE__*/React__default.createElement(Paragraph$1, {
24306
- variant: "pXS",
24307
- color: FIRE_YELLOW,
24308
- textAlign: "left"
24309
- }, "Expiring Soon ", expireDate);
24310
-
24311
- case EXPIRED:
24312
- return /*#__PURE__*/React__default.createElement(Paragraph$1, {
24313
- variant: "pXS",
24314
- color: ASH_GREY,
24315
- textAlign: "left"
24316
- }, "Expired");
24317
- }
24318
- };
24319
-
24320
25220
  return /*#__PURE__*/React__default.createElement(CreditCardWrapper, null, /*#__PURE__*/React__default.createElement(CCIconWrapper, null, /*#__PURE__*/React__default.createElement(GenericCard, null)), /*#__PURE__*/React__default.createElement(Stack, {
24321
25221
  childGap: "0"
24322
25222
  }, /*#__PURE__*/React__default.createElement(Box, {
@@ -24327,14 +25227,14 @@ var FormattedCreditCard = function FormattedCreditCard(_ref) {
24327
25227
  color: themeValues.textColor,
24328
25228
  textAlign: "left",
24329
25229
  extraStyles: "display: inline-block;"
24330
- }, "Card ending in ".concat(lastFour)), expireDate && /*#__PURE__*/React__default.createElement(React.Fragment, null, renderCardStatus())), autoPay && /*#__PURE__*/React__default.createElement(Text$1, {
25230
+ }, "Card ending in ".concat(lastFour)), expireDate && /*#__PURE__*/React__default.createElement(React.Fragment, null, renderCardStatus(expirationStatus, expireDate, "left", "p"))), autoPay && /*#__PURE__*/React__default.createElement(Text$1, {
24331
25231
  variant: "p",
24332
25232
  color: themeValues.autopayTextColor,
24333
25233
  extraStyles: "font-style: italic;"
24334
25234
  }, "Autopay Enabled")));
24335
25235
  };
24336
25236
 
24337
- var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$l);
25237
+ var FormattedCreditCard$1 = themeComponent(FormattedCreditCard, "FormattedCreditCard", fallbackValues$m);
24338
25238
 
24339
25239
  var Hamburger = styled__default.button.withConfig({
24340
25240
  displayName: "HamburgerButton__Hamburger",
@@ -24416,7 +25316,7 @@ var fontSize$8 = {
24416
25316
  h5: "1.375rem",
24417
25317
  h6: "1.25rem"
24418
25318
  };
24419
- var fallbackValues$m = {
25319
+ var fallbackValues$n = {
24420
25320
  fontFamily: fontFamily$5,
24421
25321
  fontSize: fontSize$8
24422
25322
  };
@@ -24458,7 +25358,60 @@ var Heading = function Heading(_ref) {
24458
25358
  }, rest), safeChildren(children, /*#__PURE__*/React__default.createElement("span", null)));
24459
25359
  };
24460
25360
 
24461
- var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$m, "h1");
25361
+ var Heading$1 = themeComponent(Heading, "Heading", fallbackValues$n, "h1");
25362
+
25363
+ var Image = styled__default.img.withConfig({
25364
+ displayName: "ImageBoxstyled__Image",
25365
+ componentId: "sc-8lg9y6-0"
25366
+ })(["width:", ";height:", ";object-fit:", ";object-position:", ";"], function (_ref) {
25367
+ var _ref$width = _ref.width,
25368
+ width = _ref$width === void 0 ? "100%" : _ref$width;
25369
+ return width;
25370
+ }, function (_ref2) {
25371
+ var _ref2$height = _ref2.height,
25372
+ height = _ref2$height === void 0 ? "100%" : _ref2$height;
25373
+ return height;
25374
+ }, function (_ref3) {
25375
+ var _ref3$objectFit = _ref3.objectFit,
25376
+ objectFit = _ref3$objectFit === void 0 ? "cover" : _ref3$objectFit;
25377
+ return objectFit;
25378
+ }, function (_ref4) {
25379
+ var _ref4$objectPosition = _ref4.objectPosition,
25380
+ objectPosition = _ref4$objectPosition === void 0 ? "center" : _ref4$objectPosition;
25381
+ return objectPosition;
25382
+ });
25383
+
25384
+ var ImageBox = function ImageBox(_ref) {
25385
+ var image = _ref.image,
25386
+ minHeight = _ref.minHeight,
25387
+ minWidth = _ref.minWidth,
25388
+ maxWidth = _ref.maxWidth,
25389
+ borderRadius = _ref.borderRadius,
25390
+ imgWidth = _ref.imgWidth,
25391
+ imgHeight = _ref.imgHeight,
25392
+ objectFit = _ref.objectFit,
25393
+ objectPosition = _ref.objectPosition;
25394
+ var boxMaxWidth = maxWidth || minWidth;
25395
+ var _image$url = image.url,
25396
+ url = _image$url === void 0 ? "" : _image$url,
25397
+ _image$altText = image.altText,
25398
+ altText = _image$altText === void 0 ? "" : _image$altText;
25399
+ return /*#__PURE__*/React__default.createElement(Box, {
25400
+ padding: "0",
25401
+ minWidth: minWidth,
25402
+ minHeight: minHeight,
25403
+ maxWidth: boxMaxWidth,
25404
+ borderRadius: borderRadius,
25405
+ extraStyles: "height: ".concat(minHeight, ";")
25406
+ }, /*#__PURE__*/React__default.createElement(Image, {
25407
+ width: imgWidth,
25408
+ height: imgHeight,
25409
+ objectFit: objectFit,
25410
+ objectPosition: objectPosition,
25411
+ src: url,
25412
+ alt: altText
25413
+ }));
25414
+ };
24462
25415
 
24463
25416
  var Jumbo = function Jumbo(_ref) {
24464
25417
  var showButton = _ref.showButton,
@@ -24532,7 +25485,7 @@ var fontWeight$4 = {
24532
25485
  pL: "600",
24533
25486
  h6: "700"
24534
25487
  };
24535
- var fallbackValues$n = {
25488
+ var fallbackValues$o = {
24536
25489
  fontWeight: fontWeight$4
24537
25490
  };
24538
25491
 
@@ -24560,7 +25513,7 @@ var LabeledAmount = function LabeledAmount(_ref) {
24560
25513
  }, amount));
24561
25514
  };
24562
25515
 
24563
- var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$n, "default");
25516
+ var LabeledAmount$1 = themeComponent(LabeledAmount, "LabeledAmount", fallbackValues$o, "default");
24564
25517
 
24565
25518
  var weightTitle = {
24566
25519
  "default": "600",
@@ -24570,7 +25523,7 @@ var paragraphVariant = {
24570
25523
  "default": "pL",
24571
25524
  small: "pS"
24572
25525
  };
24573
- var fallbackValues$o = {
25526
+ var fallbackValues$p = {
24574
25527
  weightTitle: weightTitle,
24575
25528
  paragraphVariant: paragraphVariant
24576
25529
  };
@@ -24579,7 +25532,9 @@ var LineItem = function LineItem(_ref) {
24579
25532
  var description = _ref.description,
24580
25533
  subDescription = _ref.subDescription,
24581
25534
  amount = _ref.amount,
24582
- themeValues = _ref.themeValues;
25535
+ themeValues = _ref.themeValues,
25536
+ _ref$displayQuantity = _ref.displayQuantity,
25537
+ displayQuantity = _ref$displayQuantity === void 0 ? null : _ref$displayQuantity;
24583
25538
  return /*#__PURE__*/React__default.createElement(Cluster, {
24584
25539
  nowrap: true,
24585
25540
  justify: "space-between",
@@ -24592,17 +25547,20 @@ var LineItem = function LineItem(_ref) {
24592
25547
  }, description), /*#__PURE__*/React__default.createElement(Paragraph$1, {
24593
25548
  variant: themeValues.paragraphVariant,
24594
25549
  weight: "400"
24595
- }, subDescription)), /*#__PURE__*/React__default.createElement(Paragraph$1, {
25550
+ }, subDescription)), !!displayQuantity && /*#__PURE__*/React__default.createElement(Paragraph$1, {
25551
+ variant: themeValues.paragraphVariant,
25552
+ weight: themeValues.weightTitle
25553
+ }, "x".concat(displayQuantity)), /*#__PURE__*/React__default.createElement(Paragraph$1, {
24596
25554
  variant: themeValues.paragraphVariant,
24597
25555
  weight: "600",
24598
25556
  extraStyles: "margin: 0; text-align: end; min-width: fit-content; padding-left: 32px;"
24599
25557
  }, amount));
24600
25558
  };
24601
25559
 
24602
- var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$o, "default");
25560
+ var LineItem$1 = themeComponent(LineItem, "LineItem", fallbackValues$p, "default");
24603
25561
 
24604
25562
  var color$8 = "#15749D";
24605
- var fallbackValues$p = {
25563
+ var fallbackValues$q = {
24606
25564
  color: color$8
24607
25565
  };
24608
25566
 
@@ -24641,7 +25599,7 @@ var Spinner$1 = function Spinner(_ref4) {
24641
25599
  })));
24642
25600
  };
24643
25601
 
24644
- var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$p);
25602
+ var Spinner$2 = themeComponent(Spinner$1, "Spinner", fallbackValues$q);
24645
25603
 
24646
25604
  var Loading = function Loading() {
24647
25605
  return /*#__PURE__*/React__default.createElement(Box, {
@@ -24907,7 +25865,7 @@ var height$1 = {
24907
25865
  "default": "3rem",
24908
25866
  large: "192px"
24909
25867
  };
24910
- var fallbackValues$q = {
25868
+ var fallbackValues$r = {
24911
25869
  color: color$9,
24912
25870
  height: height$1
24913
25871
  };
@@ -25016,12 +25974,12 @@ var Placeholder = function Placeholder(_ref2) {
25016
25974
  }, text)))))))))));
25017
25975
  };
25018
25976
 
25019
- var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$q, "default");
25977
+ var Placeholder$1 = themeComponent(Placeholder, "Placeholder", fallbackValues$r, "default");
25020
25978
 
25021
25979
  var backgroundColor$4 = {
25022
25980
  "default": "".concat(WHITE)
25023
25981
  };
25024
- var fallbackValues$r = {
25982
+ var fallbackValues$s = {
25025
25983
  backgroundColor: backgroundColor$4
25026
25984
  };
25027
25985
 
@@ -25049,7 +26007,7 @@ var ProcessingFee = function ProcessingFee(_ref) {
25049
26007
  }));
25050
26008
  };
25051
26009
 
25052
- var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$r, "default");
26010
+ var ProcessingFee$1 = themeComponent(ProcessingFee, "ProcessingFee", fallbackValues$s, "default");
25053
26011
 
25054
26012
 
25055
26013
 
@@ -25111,7 +26069,7 @@ var RadioButtonWithLabel = function RadioButtonWithLabel(_ref) {
25111
26069
 
25112
26070
  var activeColor$5 = "".concat(MATISSE_BLUE);
25113
26071
  var inactiveColor = "".concat(GREY_CHATEAU);
25114
- var fallbackValues$s = {
26072
+ var fallbackValues$t = {
25115
26073
  activeColor: activeColor$5,
25116
26074
  inactiveColor: inactiveColor
25117
26075
  };
@@ -25133,6 +26091,8 @@ var RadioButton$1 = function RadioButton(_ref2) {
25133
26091
  name = _ref2.name,
25134
26092
  _ref2$disabled = _ref2.disabled,
25135
26093
  disabled = _ref2$disabled === void 0 ? false : _ref2$disabled,
26094
+ _ref2$ariaDescribedBy = _ref2.ariaDescribedBy,
26095
+ ariaDescribedBy = _ref2$ariaDescribedBy === void 0 ? "" : _ref2$ariaDescribedBy,
25136
26096
  themeValues = _ref2.themeValues;
25137
26097
  var buttonBorder = {
25138
26098
  onFocused: {
@@ -25184,6 +26144,7 @@ var RadioButton$1 = function RadioButton(_ref2) {
25184
26144
  "aria-label": name,
25185
26145
  disabled: disabled,
25186
26146
  onClick: toggleRadio,
26147
+ "aria-describedby": ariaDescribedBy,
25187
26148
  tabIndex: "-1"
25188
26149
  }), /*#__PURE__*/React__default.createElement(Motion, {
25189
26150
  borderWidth: "1px",
@@ -25201,12 +26162,12 @@ var RadioButton$1 = function RadioButton(_ref2) {
25201
26162
  })));
25202
26163
  };
25203
26164
 
25204
- var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$s);
26165
+ var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$t);
25205
26166
 
25206
26167
  var border$2 = {
25207
26168
  "default": "1px solid #caced8"
25208
26169
  };
25209
- var fallbackValues$t = {
26170
+ var fallbackValues$u = {
25210
26171
  border: border$2
25211
26172
  };
25212
26173
 
@@ -25221,7 +26182,9 @@ var SearchableSelect = function SearchableSelect(_ref) {
25221
26182
  fields = _ref.fields,
25222
26183
  actions = _ref.actions,
25223
26184
  disabled = _ref.disabled,
25224
- themeValues = _ref.themeValues;
26185
+ themeValues = _ref.themeValues,
26186
+ _ref$placeholder = _ref.placeholder,
26187
+ placeholder = _ref$placeholder === void 0 ? "Search agencies" : _ref$placeholder;
25225
26188
 
25226
26189
  var _useState = React.useState([]),
25227
26190
  _useState2 = _slicedToArray(_useState, 2),
@@ -25252,15 +26215,15 @@ var SearchableSelect = function SearchableSelect(_ref) {
25252
26215
  padding: "1rem",
25253
26216
  border: themeValues.border,
25254
26217
  extraStyles: disabled && "color: #6e727e; background-color: #f7f7f7; pointer-events: none;"
25255
- }, /*#__PURE__*/React__default.createElement(Stack, null, /*#__PURE__*/React__default.createElement(FormInput$1, {
26218
+ }, /*#__PURE__*/React__default.createElement(FormInput$1, {
25256
26219
  errorMessages: {},
25257
26220
  field: fields.searchTerm,
25258
26221
  fieldActions: actions.fields.searchTerm,
25259
- placeholder: "Search agencies",
26222
+ placeholder: placeholder,
25260
26223
  disabled: disabled
25261
26224
  }), /*#__PURE__*/React__default.createElement(Box, {
25262
- padding: "0.5rem 0",
25263
- extraStyles: "overflow-y: scroll; height: 250px;"
26225
+ padding: "0 0 0.5rem",
26226
+ extraStyles: "overflow-y: scroll; max-height: 250px;"
25264
26227
  }, /*#__PURE__*/React__default.createElement(Stack, null, itemList.map(function (value) {
25265
26228
  var _selectedItems$find;
25266
26229
 
@@ -25276,12 +26239,12 @@ var SearchableSelect = function SearchableSelect(_ref) {
25276
26239
  },
25277
26240
  textExtraStyles: "margin: 0;",
25278
26241
  disabled: disabled,
25279
- extraStyles: "margin: 0 0.5rem;"
26242
+ extraStyles: "margin: 0.5rem;"
25280
26243
  });
25281
- })))));
26244
+ }))));
25282
26245
  };
25283
26246
 
25284
- var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$t, "default");
26247
+ var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$u, "default");
25285
26248
 
25286
26249
  var borderColor$2 = {
25287
26250
  "default": "".concat(GREY_CHATEAU)
@@ -25289,7 +26252,7 @@ var borderColor$2 = {
25289
26252
  var borderSize = {
25290
26253
  "default": "1px"
25291
26254
  };
25292
- var fallbackValues$u = {
26255
+ var fallbackValues$v = {
25293
26256
  borderColor: borderColor$2,
25294
26257
  borderSize: borderSize
25295
26258
  };
@@ -25306,7 +26269,7 @@ var SolidDivider = function SolidDivider(_ref) {
25306
26269
  });
25307
26270
  };
25308
26271
 
25309
- var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$u, "default");
26272
+ var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$v, "default");
25310
26273
 
25311
26274
  var placeHolderOptionUS = {
25312
26275
  text: "Please select state",
@@ -35890,7 +36853,7 @@ var offBackground = "".concat(REGENT_GREY);
35890
36853
  var labelStyles = "\n display: flex;\n justify-content: flex-start;\n align-items: center;\n";
35891
36854
  var rightLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row;\n");
35892
36855
  var leftLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row-reverse;\n");
35893
- var fallbackValues$v = {
36856
+ var fallbackValues$w = {
35894
36857
  onBackground: onBackground,
35895
36858
  disabledBackground: disabledBackground,
35896
36859
  white: white,
@@ -36066,7 +37029,7 @@ var ToggleSwitch = function ToggleSwitch(_ref6) {
36066
37029
  }, label))));
36067
37030
  };
36068
37031
 
36069
- var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$v);
37032
+ var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$w);
36070
37033
 
36071
37034
  var background$1 = "".concat(ATHENS_GREY);
36072
37035
  var white$1 = "".concat(WHITE);
@@ -36115,7 +37078,7 @@ var backgroundColor$5 = WHITE;
36115
37078
  var imageBackgroundColor = INFO_BLUE;
36116
37079
  var headerBackgroundColor = STORM_GREY;
36117
37080
  var headerColor = WHITE;
36118
- var fallbackValues$w = {
37081
+ var fallbackValues$x = {
36119
37082
  backgroundColor: backgroundColor$5,
36120
37083
  imageBackgroundColor: imageBackgroundColor,
36121
37084
  headerBackgroundColor: headerBackgroundColor,
@@ -36138,11 +37101,11 @@ var CardImage = styled__default.img.withConfig({
36138
37101
 
36139
37102
  var titleColor = BRIGHT_GREY;
36140
37103
  var titleWeight = FONT_WEIGHT_BOLD;
36141
- var textColor$2 = BRIGHT_GREY;
36142
- var fallbackValues$x = {
37104
+ var textColor$3 = BRIGHT_GREY;
37105
+ var fallbackValues$y = {
36143
37106
  titleColor: titleColor,
36144
37107
  titleWeight: titleWeight,
36145
- textColor: textColor$2
37108
+ textColor: textColor$3
36146
37109
  };
36147
37110
 
36148
37111
  var CardText = function CardText(_ref) {
@@ -36163,7 +37126,7 @@ var CardText = function CardText(_ref) {
36163
37126
  color: themeValues.textColor
36164
37127
  }, text))));
36165
37128
  };
36166
- var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$x);
37129
+ var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$y);
36167
37130
 
36168
37131
  var CardHeader = function CardHeader(_ref) {
36169
37132
  var backgroundColor = _ref.backgroundColor,
@@ -36260,12 +37223,12 @@ var Card = function Card(_ref) {
36260
37223
  }), children)));
36261
37224
  };
36262
37225
 
36263
- var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$w);
37226
+ var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$x);
36264
37227
 
36265
37228
  var fontFamily$6 = "Public Sans, sans-serif";
36266
37229
  var activeColor$6 = MATISSE_BLUE;
36267
37230
  var linkColor$3 = CHARADE_GREY;
36268
- var fallbackValues$y = {
37231
+ var fallbackValues$z = {
36269
37232
  fontFamily: fontFamily$6,
36270
37233
  activeColor: activeColor$6,
36271
37234
  linkColor: linkColor$3
@@ -36298,7 +37261,7 @@ var NavTab = function NavTab(_ref) {
36298
37261
  }, label));
36299
37262
  };
36300
37263
 
36301
- var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$y);
37264
+ var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$z);
36302
37265
 
36303
37266
  var NavTabs = function NavTabs(_ref) {
36304
37267
  var tabsConfig = _ref.tabsConfig,
@@ -36353,6 +37316,142 @@ var LoadingLine = function LoadingLine(_ref) {
36353
37316
  });
36354
37317
  };
36355
37318
 
37319
+ var Table_styled = styled__default.table.withConfig({
37320
+ displayName: "Tablestyled",
37321
+ componentId: "sc-mveye7-0"
37322
+ })(["width:100%;table-layout:auto;border-collapse:collapse;", ""], function (_ref) {
37323
+ var extraStyles = _ref.extraStyles;
37324
+ return extraStyles;
37325
+ });
37326
+
37327
+ var TableBody_styled = styled__default.tbody.withConfig({
37328
+ displayName: "TableBodystyled",
37329
+ componentId: "sc-wk5osr-0"
37330
+ })(["", ""], function (_ref) {
37331
+ var extraStyles = _ref.extraStyles;
37332
+ return extraStyles;
37333
+ });
37334
+
37335
+ var TableCell_styled = styled__default.td.withConfig({
37336
+ displayName: "TableCellstyled",
37337
+ componentId: "sc-iqndn8-0"
37338
+ })(["padding:", ";font-size:", " white-space:nowrap;max-width:", ";overflow:hidden;text-overflow:ellipsis;&:last-child{text-align:right;}", ";"], function (_ref) {
37339
+ var _ref$padding = _ref.padding,
37340
+ padding = _ref$padding === void 0 ? "24px" : _ref$padding;
37341
+ return padding;
37342
+ }, function (_ref2) {
37343
+ var _ref2$fontSize = _ref2.fontSize,
37344
+ fontSize = _ref2$fontSize === void 0 ? "0.875rem" : _ref2$fontSize;
37345
+ return fontSize;
37346
+ }, function (_ref3) {
37347
+ var _ref3$maxWidth = _ref3.maxWidth,
37348
+ maxWidth = _ref3$maxWidth === void 0 ? "250px" : _ref3$maxWidth;
37349
+ return maxWidth;
37350
+ }, function (_ref4) {
37351
+ var extraStyles = _ref4.extraStyles;
37352
+ return extraStyles;
37353
+ });
37354
+
37355
+ var backgroundColor$6 = ALABASTER_WHITE;
37356
+ var borderColor$3 = GREY_CHATEAU;
37357
+ var fallbackValues$A = {
37358
+ backgroundColor: backgroundColor$6,
37359
+ borderColor: borderColor$3
37360
+ };
37361
+
37362
+ var StyledTableHead = styled__default.thead.withConfig({
37363
+ displayName: "TableHeadstyled",
37364
+ componentId: "sc-j8e6c1-0"
37365
+ })(["background-color:", ";border-bottom:", ";font-size:", ";"], function (_ref) {
37366
+ var backgroundColor = _ref.backgroundColor;
37367
+ return backgroundColor;
37368
+ }, function (_ref2) {
37369
+ var borderColor = _ref2.borderColor;
37370
+ return "1px solid ".concat(borderColor);
37371
+ }, function (_ref3) {
37372
+ var _ref3$fontSize = _ref3.fontSize,
37373
+ fontSize = _ref3$fontSize === void 0 ? "0.875rem" : _ref3$fontSize;
37374
+ return fontSize;
37375
+ });
37376
+
37377
+ var borderColor$4 = GREY_CHATEAU;
37378
+ var hoverBackgroundColor$1 = HOVER_LIGHT_BLUE;
37379
+ var fallbackValues$B = {
37380
+ borderColor: borderColor$4,
37381
+ hoverBackgroundColor: hoverBackgroundColor$1
37382
+ };
37383
+
37384
+ var TableRowWrapper = styled__default.tr.withConfig({
37385
+ displayName: "TableRowstyled",
37386
+ componentId: "sc-1tc0sav-0"
37387
+ })(["&:not(:last-child){border-bottom:", ";}", " ", ""], function (_ref) {
37388
+ var borderColor = _ref.borderColor;
37389
+ return "1px solid ".concat(borderColor);
37390
+ }, function (_ref2) {
37391
+ var hoverCursor = _ref2.hoverCursor,
37392
+ hoverEffect = _ref2.hoverEffect,
37393
+ hoverBackgroundColor = _ref2.hoverBackgroundColor;
37394
+ return hoverEffect && "&:hover {\n ".concat(hoverCursor && "cursor: pointer", ";\n background-color: ").concat(hoverBackgroundColor, ";\n }");
37395
+ }, function (_ref3) {
37396
+ var extraStyles = _ref3.extraStyles;
37397
+ return extraStyles;
37398
+ });
37399
+
37400
+ var _excluded$w = ["children", "extraStyles", "hoverCursor", "hoverEffect", "onClick", "themeValues"];
37401
+
37402
+ var TableRow = function TableRow(_ref) {
37403
+ var children = _ref.children,
37404
+ extraStyles = _ref.extraStyles,
37405
+ _ref$hoverCursor = _ref.hoverCursor,
37406
+ _ref$hoverEffect = _ref.hoverEffect,
37407
+ hoverEffect = _ref$hoverEffect === void 0 ? true : _ref$hoverEffect,
37408
+ onClick = _ref.onClick,
37409
+ themeValues = _ref.themeValues,
37410
+ props = _objectWithoutProperties(_ref, _excluded$w);
37411
+
37412
+ return /*#__PURE__*/React__default.createElement(TableRowWrapper, _extends({
37413
+ onClick: onClick,
37414
+ hoverEffect: hoverEffect,
37415
+ extraStyles: extraStyles,
37416
+ borderColor: themeValues.borderColor,
37417
+ hoverBackgroundColor: themeValues.hoverBackgroundColor
37418
+ }, props), children);
37419
+ };
37420
+
37421
+ var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$B);
37422
+
37423
+ var TableHead = function TableHead(_ref) {
37424
+ var children = _ref.children,
37425
+ _ref$extraStyles = _ref.extraStyles,
37426
+ extraStyles = _ref$extraStyles === void 0 ? "" : _ref$extraStyles,
37427
+ themeValues = _ref.themeValues;
37428
+ return /*#__PURE__*/React__default.createElement(StyledTableHead, {
37429
+ backgroundColor: themeValues.backgroundColor,
37430
+ borderColor: themeValues.borderColor
37431
+ }, /*#__PURE__*/React__default.createElement(TableRow$1, {
37432
+ extraStyles: extraStyles,
37433
+ hoverEffect: false
37434
+ }, children));
37435
+ };
37436
+
37437
+ var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$A);
37438
+
37439
+ var TableHeading_styled = styled__default.th.withConfig({
37440
+ displayName: "TableHeadingstyled",
37441
+ componentId: "sc-1ggk38d-0"
37442
+ })(["padding:", ";min-width:", ";text-align:left;&:last-child{text-align:right;}", ""], function (_ref) {
37443
+ var _ref$padding = _ref.padding,
37444
+ padding = _ref$padding === void 0 ? "24px" : _ref$padding;
37445
+ return padding;
37446
+ }, function (_ref2) {
37447
+ var _ref2$minWidth = _ref2.minWidth,
37448
+ minWidth = _ref2$minWidth === void 0 ? "initial" : _ref2$minWidth;
37449
+ return minWidth;
37450
+ }, function (_ref3) {
37451
+ var extraStyles = _ref3.extraStyles;
37452
+ return extraStyles;
37453
+ });
37454
+
36356
37455
  const validatorToPredicate = (validatorFn, emptyCase) => (
36357
37456
  value,
36358
37457
  ...rest
@@ -38255,9 +39354,9 @@ AddressForm.reducer = reducer;
38255
39354
  AddressForm.mapStateToProps = mapStateToProps$1;
38256
39355
  AddressForm.mapDispatchToProps = mapDispatchToProps;
38257
39356
 
38258
- var backgroundColor$6 = "#ebeffb";
38259
- var fallbackValues$z = {
38260
- backgroundColor: backgroundColor$6
39357
+ var backgroundColor$7 = "#ebeffb";
39358
+ var fallbackValues$C = {
39359
+ backgroundColor: backgroundColor$7
38261
39360
  };
38262
39361
 
38263
39362
  var Banner = function Banner(_ref) {
@@ -38308,7 +39407,7 @@ var Banner = function Banner(_ref) {
38308
39407
  }, /*#__PURE__*/React__default.createElement(Image, null))));
38309
39408
  };
38310
39409
 
38311
- var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$z);
39410
+ var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$C);
38312
39411
 
38313
39412
  var ChangePasswordForm = function ChangePasswordForm(_ref) {
38314
39413
  var _newPasswordErrorMess;
@@ -38450,7 +39549,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
38450
39549
  var titleColor$1 = "#292A33";
38451
39550
  var headingBackgroundColor = "transparent";
38452
39551
  var bodyBackgroundColor = "transparent";
38453
- var fallbackValues$A = {
39552
+ var fallbackValues$D = {
38454
39553
  titleColor: titleColor$1,
38455
39554
  headingBackgroundColor: headingBackgroundColor,
38456
39555
  bodyBackgroundColor: bodyBackgroundColor
@@ -38577,7 +39676,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
38577
39676
  }, children))));
38578
39677
  };
38579
39678
 
38580
- var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$A);
39679
+ var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$D);
38581
39680
 
38582
39681
  var ClipboardIcon = function ClipboardIcon(_ref) {
38583
39682
  var themeValues = _ref.themeValues;
@@ -38838,8 +39937,8 @@ var EditableListItemControls = styled__default.div.withConfig({
38838
39937
  componentId: "sc-10ehkz7-1"
38839
39938
  })(["display:flex;justify-content:space-evenly;align-items:center;"]);
38840
39939
 
38841
- var ACTIVE$1 = "ACTIVE";
38842
- var EXPIRED$1 = "EXPIRED";
39940
+ var ACTIVE = "ACTIVE";
39941
+ var EXPIRED = "EXPIRED";
38843
39942
 
38844
39943
  var EditableList = function EditableList(_ref) {
38845
39944
  var _ref$title = _ref.title,
@@ -38868,13 +39967,16 @@ var EditableList = function EditableList(_ref) {
38868
39967
  autoPayMethods = _ref.autoPayMethods,
38869
39968
  _ref$as = _ref.as,
38870
39969
  as = _ref$as === void 0 ? "p" : _ref$as,
39970
+ _ref$listPadding = _ref.listPadding,
39971
+ listPadding = _ref$listPadding === void 0 ? "0rem 0rem 1.5rem 0rem" : _ref$listPadding,
38871
39972
  qaPrefix = _ref.qaPrefix,
38872
39973
  ariaLabel = _ref.ariaLabel;
38873
39974
  var addText = "Add a".concat(itemName[0].match(/[aieouAIEOU]/) ? "n" : "", " ").concat(itemName);
38874
39975
  return /*#__PURE__*/React__default.createElement(Box, {
38875
- padding: "0rem 0rem 1.5rem 0rem",
39976
+ padding: listPadding,
38876
39977
  as: "section",
38877
- "aria-labelledby": "li"
39978
+ "aria-labelledby": typeof title === "string" ? "editable-list-".concat(createIdFromString(title)) : "",
39979
+ "aria-label": !title && typeof itemName === "string" ? "editable-list-".concat(createIdFromString(itemName)) : ""
38878
39980
  }, /*#__PURE__*/React__default.createElement(Stack, {
38879
39981
  childGap: "0rem"
38880
39982
  }, title !== "" && /*#__PURE__*/React__default.createElement(Box, {
@@ -38883,7 +39985,8 @@ var EditableList = function EditableList(_ref) {
38883
39985
  as: as,
38884
39986
  weight: titleWeight,
38885
39987
  color: CHARADE_GREY,
38886
- extraStyles: "letter-spacing: 0.29px; font-size: 1.125rem;"
39988
+ extraStyles: "letter-spacing: 0.29px; font-size: 1.125rem;",
39989
+ id: typeof title === "string" ? "editable-list-".concat(createIdFromString(title)) : ""
38887
39990
  }, title)), /*#__PURE__*/React__default.createElement(Box, {
38888
39991
  padding: "0",
38889
39992
  borderRadius: "4px",
@@ -38896,13 +39999,13 @@ var EditableList = function EditableList(_ref) {
38896
39999
  modalOpen = _useState2[0],
38897
40000
  toggleModal = _useState2[1];
38898
40001
 
38899
- var expiredItem = (_item$expirationStatu = item === null || item === void 0 ? void 0 : item.expirationStatus) !== null && _item$expirationStatu !== void 0 ? _item$expirationStatu : ACTIVE$1;
40002
+ var expiredItem = (_item$expirationStatu = item === null || item === void 0 ? void 0 : item.expirationStatus) !== null && _item$expirationStatu !== void 0 ? _item$expirationStatu : ACTIVE;
38900
40003
  return /*#__PURE__*/React__default.createElement(EditableListItem, {
38901
40004
  listItemSize: !!item.id && autoPayMethods !== null && autoPayMethods !== void 0 && autoPayMethods.some(function (methodID) {
38902
40005
  return methodID === item.id;
38903
40006
  }) ? "big" : listItemSize,
38904
40007
  key: item.id || item,
38905
- disabled: expiredItem === EXPIRED$1
40008
+ disabled: expiredItem === EXPIRED
38906
40009
  }, /*#__PURE__*/React__default.createElement(Text$1, {
38907
40010
  variant: "p",
38908
40011
  color: CHARADE_GREY
@@ -39163,7 +40266,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
39163
40266
 
39164
40267
  var footerBackgroundColor = BRIGHT_GREY;
39165
40268
  var subfooterBackgroundColor = STORM_GREY;
39166
- var fallbackValues$B = {
40269
+ var fallbackValues$E = {
39167
40270
  footerBackgroundColor: footerBackgroundColor,
39168
40271
  subfooterBackgroundColor: subfooterBackgroundColor
39169
40272
  };
@@ -39195,7 +40298,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
39195
40298
  }));
39196
40299
  };
39197
40300
 
39198
- var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$B);
40301
+ var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$E);
39199
40302
 
39200
40303
  var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
39201
40304
  var _EmailErrorMessages;
@@ -39245,11 +40348,11 @@ ForgotPasswordForm.reducer = reducer$4;
39245
40348
  ForgotPasswordForm.mapStateToProps = mapStateToProps$5;
39246
40349
  ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
39247
40350
 
39248
- var textColor$3 = "#ffffff";
39249
- var backgroundColor$7 = "#182848";
39250
- var fallbackValues$C = {
39251
- textColor: textColor$3,
39252
- backgroundColor: backgroundColor$7
40351
+ var textColor$4 = "#ffffff";
40352
+ var backgroundColor$8 = "#182848";
40353
+ var fallbackValues$F = {
40354
+ textColor: textColor$4,
40355
+ backgroundColor: backgroundColor$8
39253
40356
  };
39254
40357
 
39255
40358
  var HighlightTabRow = function HighlightTabRow(_ref) {
@@ -39279,13 +40382,15 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
39279
40382
  maxWidth: "76.5rem"
39280
40383
  }, /*#__PURE__*/React__default.createElement(Reel, {
39281
40384
  padding: "0",
39282
- childGap: "4.5rem",
40385
+ childGap: "0",
39283
40386
  childWidth: "11rem",
39284
40387
  justifyContent: "space-evenly",
39285
40388
  disableScroll: true,
39286
40389
  useOrderedList: useOrderedList,
39287
40390
  useUnorderedList: useUnorderedList
39288
40391
  }, repeat( /*#__PURE__*/React__default.createElement(Box, null), boxesBefore), tabs.map(function (t, i) {
40392
+ var _t$toLowerCase;
40393
+
39289
40394
  return /*#__PURE__*/React__default.createElement(Box, {
39290
40395
  key: t,
39291
40396
  borderSize: "3px",
@@ -39293,7 +40398,8 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
39293
40398
  borderWidthOverride: "0 0 3px 0",
39294
40399
  extraStyles: "text-align: center; display: block;",
39295
40400
  as: "li",
39296
- "aria-current": highlightIndex == i ? "step" : ""
40401
+ "aria-current": highlightIndex == i ? "step" : "",
40402
+ id: "".concat(t === null || t === void 0 ? void 0 : (_t$toLowerCase = t.toLowerCase()) === null || _t$toLowerCase === void 0 ? void 0 : _t$toLowerCase.replace(/\s/g, "-"), "-tab")
39297
40403
  }, /*#__PURE__*/React__default.createElement(Text$1, {
39298
40404
  variant: "p",
39299
40405
  textAlign: "center",
@@ -39304,7 +40410,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
39304
40410
  }), repeat( /*#__PURE__*/React__default.createElement(Box, null), boxesAfter))));
39305
40411
  };
39306
40412
 
39307
- var HighlightTabRow$1 = /*#__PURE__*/React.memo(themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$C));
40413
+ var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$F);
39308
40414
 
39309
40415
  var AccountBillIcon = function AccountBillIcon() {
39310
40416
  return /*#__PURE__*/React__default.createElement("svg", {
@@ -44451,12 +45557,12 @@ var borderRadius = {
44451
45557
  largeTitle: "0.25rem",
44452
45558
  small: "0.25rem"
44453
45559
  };
44454
- var backgroundColor$8 = {
45560
+ var backgroundColor$9 = {
44455
45561
  "default": WHITE,
44456
45562
  largeTitle: WHITE,
44457
45563
  small: WHITE
44458
45564
  };
44459
- var fallbackValues$D = {
45565
+ var fallbackValues$G = {
44460
45566
  fontSize: fontSize$9,
44461
45567
  fontWeight: fontWeight$5,
44462
45568
  fontColor: fontColor,
@@ -44466,7 +45572,7 @@ var fallbackValues$D = {
44466
45572
  titleSpacing: titleSpacing,
44467
45573
  boxShadow: boxShadow$1,
44468
45574
  borderRadius: borderRadius,
44469
- backgroundColor: backgroundColor$8
45575
+ backgroundColor: backgroundColor$9
44470
45576
  };
44471
45577
 
44472
45578
  /*
@@ -44493,19 +45599,28 @@ var Module = function Module(_ref) {
44493
45599
  variant = _ref$variant === void 0 ? "default" : _ref$variant,
44494
45600
  fontSize = _ref.fontSize,
44495
45601
  as = _ref.as,
45602
+ _ref$titleID = _ref.titleID,
45603
+ titleID = _ref$titleID === void 0 ? "" : _ref$titleID,
45604
+ rightTitleContent = _ref.rightTitleContent,
44496
45605
  children = _ref.children;
44497
45606
  var themedFontSize = variant === "small" ? "1.25rem" : variant === "default" ? "1.375rem" : "2rem";
44498
45607
  var computedFontSize = fontSize || themedFontSize;
44499
45608
  var themedElemType = variant === "small" ? "h6" : variant === "default" ? "h5" : "h2";
44500
45609
  var computedElemType = as || themedElemType;
44501
- return /*#__PURE__*/React__default.createElement(React.Fragment, null, heading && /*#__PURE__*/React__default.createElement(Title$1, {
45610
+ var headingText = /*#__PURE__*/React__default.createElement(Title$1, {
44502
45611
  weight: themeValues.fontWeight,
44503
45612
  color: themeValues.fontColor,
44504
45613
  margin: "".concat(spacing, " 0 ").concat(themeValues.titleSpacing, " 0"),
44505
45614
  textAlign: themeValues.textAlign,
44506
45615
  as: computedElemType,
44507
- extraStyles: "font-size: ".concat(computedFontSize, ";")
44508
- }, heading), /*#__PURE__*/React__default.createElement(Box, {
45616
+ extraStyles: "font-size: ".concat(computedFontSize, ";"),
45617
+ id: titleID
45618
+ }, heading);
45619
+ return /*#__PURE__*/React__default.createElement(React.Fragment, null, heading && !rightTitleContent && headingText, heading && rightTitleContent && /*#__PURE__*/React__default.createElement(Cluster, {
45620
+ justify: "space-between",
45621
+ align: "center",
45622
+ nowrap: true
45623
+ }, headingText, rightTitleContent), /*#__PURE__*/React__default.createElement(Box, {
44509
45624
  padding: "0 0 ".concat(spacingBottom)
44510
45625
  }, /*#__PURE__*/React__default.createElement(Box, {
44511
45626
  padding: padding,
@@ -44515,9 +45630,9 @@ var Module = function Module(_ref) {
44515
45630
  }, children)));
44516
45631
  };
44517
45632
 
44518
- var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$D, "default"));
45633
+ var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$G, "default"));
44519
45634
 
44520
- var backgroundColor$9 = {
45635
+ var backgroundColor$a = {
44521
45636
  profile: "#3b414d",
44522
45637
  cms: "#3b414d"
44523
45638
  };
@@ -44525,8 +45640,8 @@ var shadowColor = {
44525
45640
  profile: "#292A33",
44526
45641
  cms: "#292A33"
44527
45642
  };
44528
- var fallbackValues$E = {
44529
- backgroundColor: backgroundColor$9,
45643
+ var fallbackValues$H = {
45644
+ backgroundColor: backgroundColor$a,
44530
45645
  shadowColor: shadowColor
44531
45646
  };
44532
45647
 
@@ -44566,7 +45681,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
44566
45681
  }, menuContent));
44567
45682
  };
44568
45683
 
44569
- var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$E, "profile");
45684
+ var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$H, "profile");
44570
45685
 
44571
45686
  var menu = posed.div({
44572
45687
  invisible: {
@@ -44601,19 +45716,25 @@ var menu = posed.div({
44601
45716
  var ImposterMenu = styled__default(menu).withConfig({
44602
45717
  displayName: "NavMenuMobile__ImposterMenu",
44603
45718
  componentId: "sc-1pf0qp7-0"
44604
- })(["position:fixed;top:72px;"]);
45719
+ })(["position:fixed;top:", ";"], function (_ref) {
45720
+ var headerSize = _ref.headerSize;
45721
+ return headerSize;
45722
+ });
44605
45723
 
44606
- var NavMenuMobile = function NavMenuMobile(_ref) {
44607
- var id = _ref.id,
44608
- _ref$menuContent = _ref.menuContent,
44609
- menuContent = _ref$menuContent === void 0 ? [] : _ref$menuContent,
44610
- _ref$visible = _ref.visible,
44611
- visible = _ref$visible === void 0 ? false : _ref$visible,
44612
- themeValues = _ref.themeValues;
45724
+ var NavMenuMobile = function NavMenuMobile(_ref2) {
45725
+ var id = _ref2.id,
45726
+ _ref2$menuContent = _ref2.menuContent,
45727
+ menuContent = _ref2$menuContent === void 0 ? [] : _ref2$menuContent,
45728
+ _ref2$visible = _ref2.visible,
45729
+ visible = _ref2$visible === void 0 ? false : _ref2$visible,
45730
+ _ref2$headerSize = _ref2.headerSize,
45731
+ headerSize = _ref2$headerSize === void 0 ? "72px" : _ref2$headerSize,
45732
+ themeValues = _ref2.themeValues;
44613
45733
  return /*#__PURE__*/React__default.createElement(ImposterMenu, {
44614
45734
  id: id,
44615
45735
  initialPose: "invisible",
44616
- pose: visible ? "visible" : "invisible"
45736
+ pose: visible ? "visible" : "invisible",
45737
+ headerSize: headerSize
44617
45738
  }, /*#__PURE__*/React__default.createElement(Box, {
44618
45739
  width: "100vw",
44619
45740
  padding: "1rem 0.5rem",
@@ -44622,7 +45743,11 @@ var NavMenuMobile = function NavMenuMobile(_ref) {
44622
45743
  }, menuContent));
44623
45744
  };
44624
45745
 
44625
- var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$E, "profile");
45746
+ var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$H, "profile");
45747
+
45748
+ var ACH_METHOD = "BANK_ACCOUNT";
45749
+ var CC_METHOD = "CREDIT_CARD";
45750
+ var CASH_METHOD = "CASH";
44626
45751
 
44627
45752
  var IconsModule = function IconsModule(_ref) {
44628
45753
  var icon = _ref.icon,
@@ -44679,7 +45804,7 @@ var activeColor$7 = "#0E506D";
44679
45804
  var linkColor$4 = "#3176AA";
44680
45805
  var fontWeight$6 = FONT_WEIGHT_REGULAR;
44681
45806
  var modalLinkHoverFocus = "outline: none;\n cursor: pointer;\n text-decoration: underline;\n text-decoration-color: #317D4F;";
44682
- var fallbackValues$F = {
45807
+ var fallbackValues$I = {
44683
45808
  color: color$a,
44684
45809
  hoverColor: hoverColor$5,
44685
45810
  activeColor: activeColor$7,
@@ -44703,13 +45828,27 @@ var AutopayModal = function AutopayModal(_ref) {
44703
45828
  isPaymentPlan = _ref.isPaymentPlan,
44704
45829
  nextAutopayDate = _ref.nextAutopayDate,
44705
45830
  dueDate = _ref.dueDate,
44706
- inactive = _ref.inactive;
44707
- var planType = isPaymentPlan ? "Payment Plan" : "Autopay";
45831
+ inactive = _ref.inactive,
45832
+ description = _ref.description,
45833
+ subDescription = _ref.subDescription,
45834
+ allowedPaymentInstruments = _ref.allowedPaymentInstruments;
45835
+
45836
+ var generateMethodNeededText = function generateMethodNeededText(planText, allowedPaymentInstruments) {
45837
+ var allowsCard = allowedPaymentInstruments.includes(CC_METHOD);
45838
+ var allowsACH = allowedPaymentInstruments.includes(ACH_METHOD);
45839
+ var methodRequired = allowsCard && !allowsACH ? "debit or credit card payment method" : !allowsCard && allowsACH ? "checking account payment method" : "payment method";
45840
+ return "To setup ".concat(planText, " you must have a saved ").concat(methodRequired, " and address in your profile. Do you want to save these now?");
45841
+ };
45842
+
45843
+ var plan = isPaymentPlan ? "your payment plan" : "autopay";
45844
+ var shortPlan = isPaymentPlan ? "Payment Plan" : "Autopay";
45845
+ var deactivateText = "deactivate ".concat(shortPlan, " for ").concat(description, ": ").concat(subDescription);
45846
+ var activateText = "Set Up ".concat(shortPlan, " for ").concat(description, ": ").concat(subDescription);
44708
45847
  var nextDate = dueDate || nextAutopayDate;
44709
45848
  var modalExtraProps = {
44710
- modalHeaderText: autoPayActive ? "Deactivate ".concat(planType) : "Set Up ".concat(planType),
44711
- modalBodyText: autoPayActive ? "Are you sure you want to deactivate ".concat(isPaymentPlan ? "your payment plan" : "autopay", "? ").concat(!inactive && nextDate ? "Your next payment will be due on ".concat(nextDate, ".") : "") : "To set up ".concat(isPaymentPlan ? "a payment plan" : "autopay", " you must save a payment method and address in your profile. Do you want to save these now?"),
44712
- continueButtonText: autoPayActive ? "Disable ".concat(planType) : "Add to Profile",
45849
+ modalHeaderText: autoPayActive ? titleCaseString(deactivateText) : titleCaseString(activateText),
45850
+ 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),
45851
+ continueButtonText: autoPayActive ? "Disable ".concat(shortPlan) : "Add to Profile",
44713
45852
  useDangerButton: autoPayActive,
44714
45853
  continueAction: autoPayActive ? function () {
44715
45854
  deactivatePaymentSchedule(isPaymentPlan ? paymentPlanSchedule : autoPaySchedule, isPaymentPlan);
@@ -44725,7 +45864,7 @@ var AutopayModal = function AutopayModal(_ref) {
44725
45864
  case "secondary":
44726
45865
  {
44727
45866
  return /*#__PURE__*/React__default.createElement(ButtonWithAction, {
44728
- text: autoPayActive ? "Turn off ".concat(planType) : "Set Up ".concat(planType),
45867
+ text: autoPayActive ? "Turn off ".concat(shortPlan) : "Set Up ".concat(shortPlan),
44729
45868
  variant: "secondary",
44730
45869
  action: function action() {
44731
45870
  toggleModal(true);
@@ -44738,7 +45877,7 @@ var AutopayModal = function AutopayModal(_ref) {
44738
45877
  case "tertiary":
44739
45878
  {
44740
45879
  return /*#__PURE__*/React__default.createElement(ButtonWithAction, {
44741
- text: autoPayActive ? "Manage ".concat(planType) : "Set Up ".concat(planType),
45880
+ text: autoPayActive ? "Manage ".concat(shortPlan) : "Set Up ".concat(shortPlan),
44742
45881
  variant: "tertiary",
44743
45882
  action: function action() {
44744
45883
  toggleModal(true);
@@ -44770,12 +45909,12 @@ var AutopayModal = function AutopayModal(_ref) {
44770
45909
  e.key === "Enter" && toggleModal(true);
44771
45910
  },
44772
45911
  tabIndex: "0",
44773
- dataQa: "".concat(planType, " On"),
45912
+ dataQa: "".concat(shortPlan, " On"),
44774
45913
  color: SEA_GREEN,
44775
45914
  weight: themeValues.fontWeight,
44776
45915
  hoverStyles: themeValues.modalLinkHoverFocus,
44777
45916
  extraStyles: "padding-left: 0.25rem;"
44778
- }, "".concat(planType, " ").concat(nextAutopayDate))));
45917
+ }, "".concat(shortPlan, " ").concat(nextAutopayDate))));
44779
45918
  }
44780
45919
  }
44781
45920
  };
@@ -44791,7 +45930,7 @@ var AutopayModal = function AutopayModal(_ref) {
44791
45930
  }, modalExtraProps), renderAutoPayControl());
44792
45931
  };
44793
45932
 
44794
- var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$F);
45933
+ var AutopayModalModule = themeComponent(AutopayModal, "AutopayModal", fallbackValues$I);
44795
45934
 
44796
45935
  var AmountModule = function AmountModule(_ref) {
44797
45936
  var totalAmountDue = _ref.totalAmountDue,
@@ -44802,7 +45941,10 @@ var AmountModule = function AmountModule(_ref) {
44802
45941
  autoPaySchedule = _ref.autoPaySchedule,
44803
45942
  paymentPlanSchedule = _ref.paymentPlanSchedule,
44804
45943
  isPaymentPlan = _ref.isPaymentPlan,
44805
- nextAutopayDate = _ref.nextAutopayDate;
45944
+ nextAutopayDate = _ref.nextAutopayDate,
45945
+ description = _ref.description,
45946
+ subDescription = _ref.subDescription,
45947
+ allowedPaymentInstruments = _ref.allowedPaymentInstruments;
44806
45948
 
44807
45949
  var _useState = React.useState(false),
44808
45950
  _useState2 = _slicedToArray(_useState, 2),
@@ -44831,7 +45973,10 @@ var AmountModule = function AmountModule(_ref) {
44831
45973
  paymentPlanSchedule: paymentPlanSchedule,
44832
45974
  isPaymentPlan: isPaymentPlan,
44833
45975
  nextAutopayDate: nextAutopayDate,
44834
- controlType: "link"
45976
+ controlType: "link",
45977
+ description: description,
45978
+ subDescription: subDescription,
45979
+ allowedPaymentInstruments: allowedPaymentInstruments
44835
45980
  })));
44836
45981
  };
44837
45982
 
@@ -44850,7 +45995,10 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
44850
45995
  isPaymentPlan = _ref.isPaymentPlan,
44851
45996
  nextAutopayDate = _ref.nextAutopayDate,
44852
45997
  obligationAssocID = _ref.obligationAssocID,
44853
- dueDate = _ref.dueDate;
45998
+ dueDate = _ref.dueDate,
45999
+ description = _ref.description,
46000
+ subDescription = _ref.subDescription,
46001
+ allowedPaymentInstruments = _ref.allowedPaymentInstruments;
44854
46002
  var planType = isPaymentPlan ? "Payment Plan" : "Autopay";
44855
46003
 
44856
46004
  var _useState = React.useState(false),
@@ -44906,7 +46054,10 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
44906
46054
  autoPaySchedule: autoPaySchedule,
44907
46055
  paymentPlanSchedule: paymentPlanSchedule,
44908
46056
  isPaymentPlan: isPaymentPlan,
44909
- nextAutopayDate: nextAutopayDate
46057
+ nextAutopayDate: nextAutopayDate,
46058
+ description: description,
46059
+ subDescription: subDescription,
46060
+ allowedPaymentInstruments: allowedPaymentInstruments
44910
46061
  }))), /*#__PURE__*/React__default.createElement(Box, {
44911
46062
  padding: isMobile ? "16px" : "0"
44912
46063
  }, /*#__PURE__*/React__default.createElement(Cluster, {
@@ -44946,7 +46097,10 @@ var PaymentDetailsActions = function PaymentDetailsActions(_ref) {
44946
46097
  paymentPlanSchedule: paymentPlanSchedule,
44947
46098
  isPaymentPlan: isPaymentPlan,
44948
46099
  nextAutopayDate: nextAutopayDate,
44949
- dueDate: dueDate
46100
+ dueDate: dueDate,
46101
+ description: description,
46102
+ subDescription: subDescription,
46103
+ allowedPaymentInstruments: allowedPaymentInstruments
44950
46104
  })), !isMobile && /*#__PURE__*/React__default.createElement(Box, {
44951
46105
  padding: "0"
44952
46106
  }, /*#__PURE__*/React__default.createElement(ButtonWithAction, {
@@ -45036,7 +46190,10 @@ var InactiveControlsModule = function InactiveControlsModule(_ref) {
45036
46190
  dueDate = _ref.dueDate,
45037
46191
  agencyName = _ref.agencyName,
45038
46192
  configType = _ref.configType,
45039
- actions = _ref.actions;
46193
+ actions = _ref.actions,
46194
+ description = _ref.description,
46195
+ subDescription = _ref.subDescription,
46196
+ allowedPaymentInstruments = _ref.allowedPaymentInstruments;
45040
46197
 
45041
46198
  var _useState = React.useState(false),
45042
46199
  _useState2 = _slicedToArray(_useState, 2),
@@ -45075,7 +46232,10 @@ var InactiveControlsModule = function InactiveControlsModule(_ref) {
45075
46232
  obligationAssocID: obligationAssocID,
45076
46233
  dueDate: dueDate,
45077
46234
  controlType: "secondary",
45078
- inactive: true
46235
+ inactive: true,
46236
+ description: description,
46237
+ subDescription: subDescription,
46238
+ allowedPaymentInstruments: allowedPaymentInstruments
45079
46239
  })), /*#__PURE__*/React__default.createElement(Box, {
45080
46240
  padding: "0",
45081
46241
  extraStyles: "flex-grow: 1;"
@@ -45117,7 +46277,7 @@ var InactiveTitleModule = function InactiveTitleModule(_ref) {
45117
46277
  };
45118
46278
 
45119
46279
  var Obligation = function Obligation(_ref) {
45120
- var _firstObligation$cust, _firstObligation$desc, _firstObligation$subD;
46280
+ var _obligations$, _firstObligation$cust;
45121
46281
 
45122
46282
  var config = _ref.config,
45123
46283
  obligations = _ref.obligations,
@@ -45152,7 +46312,13 @@ var Obligation = function Obligation(_ref) {
45152
46312
  The top level desc/subdesc for all obligations in a collection is the same
45153
46313
  (Collection accounts look different in the Account Details page)
45154
46314
  */
45155
- var firstObligation = obligations[0];
46315
+ var firstObligation = (_obligations$ = obligations === null || obligations === void 0 ? void 0 : obligations[0]) !== null && _obligations$ !== void 0 ? _obligations$ : {};
46316
+ var _firstObligation$allo = firstObligation.allowedPaymentInstruments,
46317
+ allowedPaymentInstruments = _firstObligation$allo === void 0 ? [CASH_METHOD, CC_METHOD, ACH_METHOD] : _firstObligation$allo,
46318
+ _firstObligation$desc = firstObligation.description,
46319
+ description = _firstObligation$desc === void 0 ? "Account" : _firstObligation$desc,
46320
+ _firstObligation$subD = firstObligation.subDescription,
46321
+ subDescription = _firstObligation$subD === void 0 ? obligationAssocID : _firstObligation$subD;
45156
46322
  var customAttributes = (_firstObligation$cust = firstObligation === null || firstObligation === void 0 ? void 0 : firstObligation.customAttributes) !== null && _firstObligation$cust !== void 0 ? _firstObligation$cust : {};
45157
46323
  var boxShadowValue = "0px 2px 4px rgba(41, 42, 51, 0.1), 0px 1px 1px 2px rgba(41, 42, 51, 0.1);";
45158
46324
  var activeObligation = /*#__PURE__*/React__default.createElement(Box, {
@@ -45160,7 +46326,7 @@ var Obligation = function Obligation(_ref) {
45160
46326
  borderRadius: "4px",
45161
46327
  boxShadow: boxShadowValue,
45162
46328
  as: "section",
45163
- "aria-label": "".concat((_firstObligation$desc = firstObligation === null || firstObligation === void 0 ? void 0 : firstObligation.description) !== null && _firstObligation$desc !== void 0 ? _firstObligation$desc : "account", " ").concat((_firstObligation$subD = firstObligation === null || firstObligation === void 0 ? void 0 : firstObligation.subDescription) !== null && _firstObligation$subD !== void 0 ? _firstObligation$subD : obligationAssocID),
46329
+ "aria-label": "".concat(description, " - ").concat(subDescription),
45164
46330
  border: "1px solid ".concat(GRECIAN_GREY),
45165
46331
  borderWidthOverride: "1px 0 0 0"
45166
46332
  }, /*#__PURE__*/React__default.createElement(Box, {
@@ -45189,8 +46355,8 @@ var Obligation = function Obligation(_ref) {
45189
46355
  iconValue: config.iconValue,
45190
46356
  customAttributes: customAttributes
45191
46357
  }), /*#__PURE__*/React__default.createElement(TitleModule, {
45192
- title: firstObligation === null || firstObligation === void 0 ? void 0 : firstObligation.description,
45193
- subtitle: firstObligation === null || firstObligation === void 0 ? void 0 : firstObligation.subDescription,
46358
+ title: description,
46359
+ subtitle: subDescription,
45194
46360
  titleColor: BRIGHT_GREY,
45195
46361
  isMobile: isMobile
45196
46362
  }))), !isMobile && /*#__PURE__*/React__default.createElement(AmountModule, {
@@ -45204,7 +46370,10 @@ var Obligation = function Obligation(_ref) {
45204
46370
  autoPaySchedule: autoPaySchedule,
45205
46371
  paymentPlanSchedule: paymentPlanSchedule,
45206
46372
  isPaymentPlan: isPaymentPlan,
45207
- nextAutopayDate: nextAutopayDate
46373
+ nextAutopayDate: nextAutopayDate,
46374
+ description: description,
46375
+ subDescription: subDescription,
46376
+ allowedPaymentInstruments: allowedPaymentInstruments
45208
46377
  }))), !isMobile && /*#__PURE__*/React__default.createElement(PaymentDetailsActions, {
45209
46378
  obligations: obligations,
45210
46379
  autoPayEnabled: autoPayEnabled,
@@ -45219,7 +46388,10 @@ var Obligation = function Obligation(_ref) {
45219
46388
  isMobile: isMobile,
45220
46389
  isPaymentPlan: isPaymentPlan,
45221
46390
  nextAutopayDate: nextAutopayDate,
45222
- obligationAssocID: obligationAssocID
46391
+ obligationAssocID: obligationAssocID,
46392
+ description: description,
46393
+ subDescription: subDescription,
46394
+ allowedPaymentInstruments: allowedPaymentInstruments
45223
46395
  }))), isMobile && /*#__PURE__*/React__default.createElement(PaymentDetailsActions, {
45224
46396
  obligations: obligations,
45225
46397
  autoPayEnabled: autoPayEnabled,
@@ -45234,7 +46406,10 @@ var Obligation = function Obligation(_ref) {
45234
46406
  isMobile: isMobile,
45235
46407
  isPaymentPlan: isPaymentPlan,
45236
46408
  nextAutopayDate: nextAutopayDate,
45237
- obligationAssocID: obligationAssocID
46409
+ obligationAssocID: obligationAssocID,
46410
+ description: description,
46411
+ subDescription: subDescription,
46412
+ allowedPaymentInstruments: allowedPaymentInstruments
45238
46413
  }));
45239
46414
  var inactiveObligation = /*#__PURE__*/React__default.createElement(Box, {
45240
46415
  padding: "0",
@@ -45287,7 +46462,10 @@ var Obligation = function Obligation(_ref) {
45287
46462
  obligationAssocID: obligationAssocID,
45288
46463
  dueDate: dueDate,
45289
46464
  agencyName: agencyName,
45290
- configType: config.type
46465
+ configType: config.type,
46466
+ description: description,
46467
+ subDescription: subDescription,
46468
+ allowedPaymentInstruments: allowedPaymentInstruments
45291
46469
  }))), isMobile && /*#__PURE__*/React__default.createElement(InactiveControlsModule, {
45292
46470
  obligations: obligations,
45293
46471
  autoPayEnabled: autoPayEnabled,
@@ -45301,7 +46479,10 @@ var Obligation = function Obligation(_ref) {
45301
46479
  obligationAssocID: obligationAssocID,
45302
46480
  dueDate: dueDate,
45303
46481
  agencyName: agencyName,
45304
- configType: config.type
46482
+ configType: config.type,
46483
+ description: description,
46484
+ subDescription: subDescription,
46485
+ allowedPaymentInstruments: allowedPaymentInstruments
45305
46486
  }))));
45306
46487
  return inactive ? inactiveObligation : activeObligation;
45307
46488
  };
@@ -45401,24 +46582,54 @@ var createPartialAmountFormState = function createPartialAmountFormState(lineIte
45401
46582
  };
45402
46583
  };
45403
46584
 
46585
+ var arrowColor = WHITE;
46586
+ var numberColor = MATISSE_BLUE;
46587
+ var hoverBackgroundColor$2 = ALABASTER_WHITE;
46588
+ var activeBackgroundColor$1 = WHITE;
46589
+ var activeColor$8 = MATISSE_BLUE;
46590
+ var fallbackValues$J = {
46591
+ activeColor: activeColor$8,
46592
+ activeBackgroundColor: activeBackgroundColor$1,
46593
+ arrowColor: arrowColor,
46594
+ hoverBackgroundColor: hoverBackgroundColor$2,
46595
+ numberColor: numberColor
46596
+ };
46597
+
45404
46598
  var PAGING_SPACE = 2; // how many pages we want to have before/after delimiter
45405
46599
 
45406
46600
  var PAGING_INIT_SPACE = 3; // first delimiter should appear after 3 pages
45407
46601
 
45408
- var PrevNextButton = function PrevNextButton(_ref) {
45409
- var action = _ref.action,
45410
- type = _ref.type,
45411
- arrowColor = _ref.arrowColor,
45412
- numberColor = _ref.numberColor;
46602
+ var PrevNextPlaceholder = function PrevNextPlaceholder(_ref) {
46603
+ var buttonHeight = _ref.buttonHeight,
46604
+ buttonWidth = _ref.buttonWidth;
46605
+ return /*#__PURE__*/React__default.createElement(Box, {
46606
+ padding: "0",
46607
+ minHeight: buttonHeight,
46608
+ minWidth: buttonWidth,
46609
+ extraStyles: "max-height: ".concat(buttonHeight, ";")
46610
+ });
46611
+ };
46612
+
46613
+ var PrevNextButton = function PrevNextButton(_ref2) {
46614
+ var action = _ref2.action,
46615
+ ariaLabel = _ref2.ariaLabel,
46616
+ arrowColor = _ref2.arrowColor,
46617
+ borderRadius = _ref2.borderRadius,
46618
+ buttonHeight = _ref2.buttonHeight,
46619
+ buttonWidth = _ref2.buttonWidth,
46620
+ numberColor = _ref2.numberColor,
46621
+ type = _ref2.type;
45413
46622
  return /*#__PURE__*/React__default.createElement(Box, {
45414
- padding: "0 10px 0",
45415
- minHeight: "40px",
45416
- extraStyles: "max-height: 40px;"
46623
+ padding: "0",
46624
+ minHeight: buttonHeight,
46625
+ extraStyles: "max-height: ".concat(buttonHeight, ";"),
46626
+ as: "li"
45417
46627
  }, /*#__PURE__*/React__default.createElement(ButtonWithAction, {
45418
46628
  action: action,
45419
46629
  contentOverride: true,
45420
46630
  dataQa: type,
45421
- extraStyles: "\n min-width: 40px;\n min-height: 100%;\n max-height: 40px;\n padding: 6px;\n border-radius: 3px;\n background-color: ".concat(numberColor !== null && numberColor !== void 0 ? numberColor : MATISSE_BLUE, ";\n border-color: ").concat(numberColor !== null && numberColor !== void 0 ? numberColor : MATISSE_BLUE, "\n ")
46631
+ "aria-label": ariaLabel,
46632
+ extraStyles: "\n background-color: ".concat(numberColor, ";\n border-color: ").concat(numberColor, ";\n border-radius: ").concat(borderRadius, ";\n margin: 0;\n max-height: ").concat(buttonHeight, ";\n min-height: 100%;\n min-width: ").concat(buttonWidth, ";\n padding: 0;\n ")
45422
46633
  }, /*#__PURE__*/React__default.createElement(Box, {
45423
46634
  padding: "0",
45424
46635
  extraStyles: type === "prev" && "transform: scaleX(-1)"
@@ -45442,26 +46653,30 @@ var getPagesPanel = function getPagesPanel(page, pagesCount) {
45442
46653
 
45443
46654
  if (page > space + 1) {
45444
46655
  pages.push({
45445
- isDelimiter: true
46656
+ isDelimiter: true,
46657
+ id: "first-delimiter"
45446
46658
  });
45447
46659
  }
45448
46660
 
45449
46661
  for (var j = Math.max(1, page - space) + 1; j < Math.min(lastPageNumber, page + space); j++) {
45450
46662
  pages.push({
45451
46663
  index: j,
45452
- isButton: true
46664
+ isButton: true,
46665
+ id: "page-".concat(j)
45453
46666
  });
45454
46667
  }
45455
46668
 
45456
46669
  if (page < lastPageNumber - space) {
45457
46670
  pages.push({
45458
- isDelimiter: true
46671
+ isDelimiter: true,
46672
+ id: "last-delimiter"
45459
46673
  });
45460
46674
  }
45461
46675
 
45462
46676
  pages.push({
45463
46677
  index: lastPageNumber,
45464
- isButton: true
46678
+ isButton: true,
46679
+ id: "page-".concat(lastPageNumber)
45465
46680
  });
45466
46681
  var activePage = pages.find(function (p) {
45467
46682
  return p.index === page;
@@ -45474,59 +46689,114 @@ var getPagesPanel = function getPagesPanel(page, pagesCount) {
45474
46689
  return pages;
45475
46690
  };
45476
46691
 
45477
- var Pagination = function Pagination(_ref2) {
45478
- var pagePrevious = _ref2.pagePrevious,
45479
- pageNext = _ref2.pageNext,
45480
- setCurrentPage = _ref2.setCurrentPage,
45481
- currentPage = _ref2.currentPage,
45482
- pageCount = _ref2.pageCount,
45483
- numberColor = _ref2.numberColor,
45484
- arrowColor = _ref2.arrowColor;
46692
+ var Pagination = function Pagination(_ref3) {
46693
+ var _ref3$activeBorderWid = _ref3.activeBorderWidth,
46694
+ activeBorderWidth = _ref3$activeBorderWid === void 0 ? "3px" : _ref3$activeBorderWid,
46695
+ arrowColor = _ref3.arrowColor,
46696
+ _ref3$borderRadius = _ref3.borderRadius,
46697
+ borderRadius = _ref3$borderRadius === void 0 ? "3px" : _ref3$borderRadius,
46698
+ _ref3$buttonHeight = _ref3.buttonHeight,
46699
+ buttonHeight = _ref3$buttonHeight === void 0 ? "44px" : _ref3$buttonHeight,
46700
+ _ref3$buttonWidth = _ref3.buttonWidth,
46701
+ buttonWidth = _ref3$buttonWidth === void 0 ? "44px" : _ref3$buttonWidth,
46702
+ _ref3$childGap = _ref3.childGap,
46703
+ childGap = _ref3$childGap === void 0 ? "24px" : _ref3$childGap,
46704
+ currentPage = _ref3.currentPage,
46705
+ _ref3$fontSize = _ref3.fontSize,
46706
+ fontSize = _ref3$fontSize === void 0 ? "17px" : _ref3$fontSize,
46707
+ _ref3$fontWeight = _ref3.fontWeight,
46708
+ fontWeight = _ref3$fontWeight === void 0 ? "900" : _ref3$fontWeight,
46709
+ numberColor = _ref3.numberColor,
46710
+ pageCount = _ref3.pageCount,
46711
+ pageNext = _ref3.pageNext,
46712
+ pagePrevious = _ref3.pagePrevious,
46713
+ setCurrentPage = _ref3.setCurrentPage,
46714
+ ariaLabel = _ref3.ariaLabel,
46715
+ themeValues = _ref3.themeValues;
46716
+
46717
+ var _useContext = React.useContext(styled.ThemeContext),
46718
+ isMobile = _useContext.isMobile;
46719
+
46720
+ var extraStyles = "\n min-width: ".concat(buttonWidth, "; min-height: 100%; padding: 0;\n border-radius: ").concat(borderRadius, ";\n &:hover, &:focus {\n text-decoration: none;\n > * > span {\n text-decoration: none;\n }\n }\n > * > span {\n color: ").concat(numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor, "\n }\n margin: 0;\n &:hover {\n background-color: ").concat(themeValues.hoverBackgroundColor, "\n }\n ");
46721
+ var currentPageStyles = "\n border: ".concat(activeBorderWidth, " solid ").concat(numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor, ";\n color: ").concat(numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.activeColor, ";\n background-color: ").concat(themeValues.activeBackgroundColor, ";\n &:focus {\n box-shadow: none;\n }\n &:hover {\n background-color: initial;\n border: ").concat(activeBorderWidth, " solid ").concat(numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor, ";\n background-color: ").concat(themeValues.activeBackgroundColor, ";\n }\n ");
45485
46722
  return /*#__PURE__*/React__default.createElement(Cluster, {
45486
46723
  justify: "center",
45487
- childGap: "10px"
45488
- }, currentPage > 1 && /*#__PURE__*/React__default.createElement(PrevNextButton, {
45489
- type: "prev",
46724
+ childGap: childGap,
46725
+ overflow: true,
46726
+ as: "nav",
46727
+ role: "navigation",
46728
+ innerWrapperAs: "ul",
46729
+ "aria-label": ariaLabel,
46730
+ extraStyles: "> ul { padding: 0px; > li { list-style-type: none; } };"
46731
+ }, currentPage > 1 ? /*#__PURE__*/React__default.createElement(PrevNextButton, {
45490
46732
  action: pagePrevious,
45491
- arrowColor: arrowColor,
45492
- numberColor: numberColor
45493
- }), getPagesPanel(currentPage, pageCount).map(function (item, index) {
46733
+ ariaLabel: "Previous Page",
46734
+ arrowColor: arrowColor !== null && arrowColor !== void 0 ? arrowColor : themeValues.arrowColor,
46735
+ borderRadius: borderRadius,
46736
+ buttonHeight: buttonHeight,
46737
+ buttonWidth: buttonWidth,
46738
+ numberColor: numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor,
46739
+ type: "prev"
46740
+ }) : isMobile && /*#__PURE__*/React__default.createElement(PrevNextPlaceholder, {
46741
+ buttonHeight: buttonHeight,
46742
+ buttonWidth: buttonWidth
46743
+ }), isMobile ? pageCount > 0 && /*#__PURE__*/React__default.createElement(Box, {
46744
+ padding: "0"
46745
+ }, /*#__PURE__*/React__default.createElement(Cover, {
46746
+ singleChild: true
46747
+ }, /*#__PURE__*/React__default.createElement(Text$1, {
46748
+ variant: "pXL",
46749
+ weight: fontWeight,
46750
+ color: numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor,
46751
+ extraStyles: "font-size: ".concat(fontSize)
46752
+ }, "".concat(currentPage, " of ").concat(pageCount)))) : getPagesPanel(currentPage, pageCount).map(function (item, index) {
45494
46753
  return item.isButton ? /*#__PURE__*/React__default.createElement(Box, {
45495
46754
  padding: "0",
45496
- border: item.active && "1px solid ".concat(numberColor !== null && numberColor !== void 0 ? numberColor : MATISSE_BLUE),
45497
- borderRadius: item.active && "3px",
45498
- extraStyles: "max-height: 40px;"
46755
+ extraStyles: "max-height: ".concat(buttonHeight, ";"),
46756
+ as: "li",
46757
+ key: item.id
45499
46758
  }, /*#__PURE__*/React__default.createElement(ButtonWithAction, {
45500
46759
  variant: "ghost",
45501
- key: item.index,
45502
46760
  text: item.index,
45503
- disabled: item.active,
46761
+ "aria-current": item.active ? "page" : undefined,
46762
+ "aria-label": "".concat(item.index == pageCount ? "Last Page, " : "", "page ").concat(item.index),
45504
46763
  action: !item.active ? function () {
45505
46764
  return setCurrentPage({
45506
46765
  pageNumber: item.index
45507
46766
  });
45508
46767
  } : noop,
45509
- textExtraStyles: "font-size: 17px; font-weight: 900;",
45510
- extraStyles: "\n min-width: 40px; min-height: 100%; padding: 0;\n &:hover, &:focus {\n text-decoration: none;\n > * > span {\n text-decoration: none;\n }\n }\n > * > span {\n color: ".concat(numberColor !== null && numberColor !== void 0 ? numberColor : MATISSE_BLUE, "\n }\n }\n &:hover { ").concat(item.active ? "cursor: default;" : "background-color: ".concat(ALABASTER_WHITE), " }\n "),
46768
+ textExtraStyles: "font-size: ".concat(fontSize, "; font-weight: ").concat(fontWeight, ";"),
46769
+ extraStyles: "".concat(extraStyles).concat(item.active ? currentPageStyles : ""),
45511
46770
  dataQa: index
45512
46771
  }, item.index)) : /*#__PURE__*/React__default.createElement(Box, {
45513
- padding: "0 10px"
46772
+ padding: "0 10px",
46773
+ as: "li",
46774
+ key: item.id
45514
46775
  }, /*#__PURE__*/React__default.createElement(Cluster, {
45515
46776
  justify: "flex-end"
45516
46777
  }, /*#__PURE__*/React__default.createElement(Text$1, {
45517
- key: index,
45518
46778
  variant: "pXL",
45519
- weight: "900",
45520
- color: numberColor !== null && numberColor !== void 0 ? numberColor : MATISSE_BLUE
45521
- }, "...")));
45522
- }), currentPage < pageCount && /*#__PURE__*/React__default.createElement(PrevNextButton, {
45523
- type: "next",
46779
+ weight: fontWeight,
46780
+ color: numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor,
46781
+ role: "presentation"
46782
+ }, "…")));
46783
+ }), currentPage < pageCount ? /*#__PURE__*/React__default.createElement(PrevNextButton, {
45524
46784
  action: pageNext,
45525
- arrowColor: arrowColor,
45526
- numberColor: numberColor
46785
+ ariaLabel: "Next Page",
46786
+ arrowColor: arrowColor !== null && arrowColor !== void 0 ? arrowColor : themeValues.arrowColor,
46787
+ borderRadius: borderRadius,
46788
+ buttonHeight: buttonHeight,
46789
+ buttonWidth: buttonWidth,
46790
+ numberColor: numberColor !== null && numberColor !== void 0 ? numberColor : themeValues.numberColor,
46791
+ type: "next"
46792
+ }) : isMobile && /*#__PURE__*/React__default.createElement(PrevNextPlaceholder, {
46793
+ buttonHeight: buttonHeight,
46794
+ buttonWidth: buttonWidth
45527
46795
  }));
45528
46796
  };
45529
46797
 
46798
+ var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$J);
46799
+
45530
46800
  var PaymentButtonBar = function PaymentButtonBar(_ref) {
45531
46801
  var _ref$forwardButtonTex = _ref.forwardButtonText,
45532
46802
  forwardButtonText = _ref$forwardButtonTex === void 0 ? "Next" : _ref$forwardButtonTex,
@@ -45587,7 +46857,7 @@ var PaymentButtonBar = function PaymentButtonBar(_ref) {
45587
46857
  }, backButton, !hideForwardButton && /*#__PURE__*/React__default.createElement(React.Fragment, null, forwardButton))));
45588
46858
  };
45589
46859
 
45590
- var backgroundColor$a = {
46860
+ var backgroundColor$b = {
45591
46861
  "default": "transparent",
45592
46862
  small: "transparent"
45593
46863
  };
@@ -45603,14 +46873,14 @@ var labeledAmountTotal = {
45603
46873
  "default": "h6",
45604
46874
  small: "p"
45605
46875
  };
45606
- var fallbackValues$G = {
45607
- backgroundColor: backgroundColor$a,
46876
+ var fallbackValues$K = {
46877
+ backgroundColor: backgroundColor$b,
45608
46878
  lineItem: lineItem,
45609
46879
  labeledAmountSubtotal: labeledAmountSubtotal,
45610
46880
  labeledAmountTotal: labeledAmountTotal
45611
46881
  };
45612
46882
 
45613
- var _excluded$w = ["amount"],
46883
+ var _excluded$x = ["amount"],
45614
46884
  _excluded2$1 = ["amount"];
45615
46885
 
45616
46886
  var PaymentDetailsContent = function PaymentDetailsContent(_ref) {
@@ -45755,7 +47025,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
45755
47025
  return fee.amount > 0;
45756
47026
  }).map(function (_ref5) {
45757
47027
  var amount = _ref5.amount,
45758
- rest = _objectWithoutProperties(_ref5, _excluded$w);
47028
+ rest = _objectWithoutProperties(_ref5, _excluded$x);
45759
47029
 
45760
47030
  return _objectSpread2(_objectSpread2({}, rest), {}, {
45761
47031
  amount: displayCurrency(amount)
@@ -45854,7 +47124,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
45854
47124
  });
45855
47125
  };
45856
47126
 
45857
- var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$G, "default");
47127
+ var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$K, "default");
45858
47128
 
45859
47129
  var linkColor$5 = {
45860
47130
  "default": "#3176AA"
@@ -45871,7 +47141,7 @@ var fontWeight$7 = {
45871
47141
  var modalLinkHoverFocus$1 = {
45872
47142
  "default": "outline: none; text-decoration: underline;"
45873
47143
  };
45874
- var fallbackValues$H = {
47144
+ var fallbackValues$L = {
45875
47145
  linkColor: linkColor$5,
45876
47146
  fontSize: fontSize$a,
45877
47147
  lineHeight: lineHeight$4,
@@ -45930,7 +47200,324 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
45930
47200
  }, link));
45931
47201
  };
45932
47202
 
45933
- var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$H, "default");
47203
+ var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$L, "default");
47204
+
47205
+ var backgroundColor$c = {
47206
+ "default": "#ffffff",
47207
+ footer: "#ffffff"
47208
+ };
47209
+ var linkColor$6 = {
47210
+ "default": "#3176AA",
47211
+ footer: "#ffffff"
47212
+ };
47213
+ var border$3 = {
47214
+ "default": "#cdcdcd",
47215
+ footer: "#cdcdcd"
47216
+ };
47217
+ var fontSize$b = {
47218
+ "default": "1rem",
47219
+ footer: "0.875rem"
47220
+ };
47221
+ var lineHeight$5 = {
47222
+ "default": "1.5rem",
47223
+ footer: "1.25rem"
47224
+ };
47225
+ var fontWeight$8 = {
47226
+ "default": FONT_WEIGHT_REGULAR,
47227
+ footer: FONT_WEIGHT_SEMIBOLD
47228
+ };
47229
+ var standardInteractionStyles = "\n &:hover {\n outline: none; \n text-decoration: underline;\n }\n &:focus {\n outline: 3px solid #3181E3;\n outline-offset: 2px;\n }\n";
47230
+ var modalLinkHoverFocus$2 = {
47231
+ "default": standardInteractionStyles,
47232
+ footer: standardInteractionStyles
47233
+ };
47234
+ var fallbackValues$M = {
47235
+ backgroundColor: backgroundColor$c,
47236
+ linkColor: linkColor$6,
47237
+ border: border$3,
47238
+ fontSize: fontSize$b,
47239
+ lineHeight: lineHeight$5,
47240
+ fontWeight: fontWeight$8,
47241
+ modalLinkHoverFocus: modalLinkHoverFocus$2
47242
+ };
47243
+
47244
+ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
47245
+ var link = _ref.link,
47246
+ _ref$title = _ref.title,
47247
+ title = _ref$title === void 0 ? "Terms & Conditions" : _ref$title,
47248
+ isOpen = _ref.isOpen,
47249
+ toggleOpen = _ref.toggleOpen,
47250
+ toggleAccepted = _ref.toggleAccepted,
47251
+ acceptText = _ref.acceptText,
47252
+ terms = _ref.terms,
47253
+ variant = _ref.variant,
47254
+ _ref$linkVariant = _ref.linkVariant,
47255
+ linkVariant = _ref$linkVariant === void 0 ? "p" : _ref$linkVariant,
47256
+ themeValues = _ref.themeValues;
47257
+ return /*#__PURE__*/React__default.createElement(Modal$1, {
47258
+ modalOpen: isOpen,
47259
+ hideModal: function hideModal() {
47260
+ return toggleOpen(false);
47261
+ },
47262
+ showModal: function showModal() {
47263
+ return toggleOpen(true);
47264
+ },
47265
+ modalHeaderText: title,
47266
+ modalBodyText: /*#__PURE__*/React__default.createElement(Box, {
47267
+ background: themeValues.backgroundColor,
47268
+ border: "1px solid ".concat(themeValues.border),
47269
+ borderRadius: "3px",
47270
+ extraStyles: "overflow: scroll; max-height: 20rem;",
47271
+ id: "terms-body-text"
47272
+ }, /*#__PURE__*/React__default.createElement(Text$1, {
47273
+ variant: "p",
47274
+ extraStyles: "& a { text-decoration: underline; }"
47275
+ }, terms)),
47276
+ defaultWrapper: false,
47277
+ onlyCloseButton: !acceptText,
47278
+ continueButtonText: acceptText,
47279
+ continueAction: function continueAction() {
47280
+ toggleAccepted(true);
47281
+ toggleOpen(false);
47282
+ }
47283
+ }, /*#__PURE__*/React__default.createElement(Text$1, {
47284
+ variant: linkVariant,
47285
+ onClick: function onClick() {
47286
+ return toggleOpen(true);
47287
+ },
47288
+ onKeyPress: function onKeyPress(e) {
47289
+ return e.key === "Enter" && toggleOpen(true);
47290
+ },
47291
+ tabIndex: "0",
47292
+ color: themeValues.linkColor,
47293
+ weight: themeValues.fontWeight,
47294
+ hoverStyles: themeValues.modalLinkHoverFocus,
47295
+ extraStyles: "display: inline-block; width: fit-content; cursor: pointer"
47296
+ }, link));
47297
+ };
47298
+
47299
+ var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$M, "default");
47300
+
47301
+ var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
47302
+ var onCheck = _ref.onCheck,
47303
+ isChecked = _ref.isChecked,
47304
+ html = _ref.html,
47305
+ terms = _ref.terms,
47306
+ _ref$error = _ref.error,
47307
+ error = _ref$error === void 0 ? false : _ref$error,
47308
+ linkVariant = _ref.linkVariant;
47309
+
47310
+ var _useState = React.useState(false),
47311
+ _useState2 = _slicedToArray(_useState, 2),
47312
+ showTerms = _useState2[0],
47313
+ toggleShowTerms = _useState2[1];
47314
+
47315
+ return /*#__PURE__*/React__default.createElement(DisplayBox$1, null, /*#__PURE__*/React__default.createElement(Stack, null, /*#__PURE__*/React__default.createElement(Checkbox$1, {
47316
+ name: "terms",
47317
+ title: "Terms and Conditions",
47318
+ error: error,
47319
+ checked: isChecked,
47320
+ onChange: onCheck
47321
+ }), /*#__PURE__*/React__default.createElement(Box, {
47322
+ padding: "0 0 0 58px"
47323
+ }, /*#__PURE__*/React__default.createElement(Stack, null, /*#__PURE__*/React__default.createElement(Box, {
47324
+ padding: "0"
47325
+ }, html), terms && /*#__PURE__*/React__default.createElement(TermsAndConditionsModal$1, {
47326
+ link: "Learn More",
47327
+ terms: terms,
47328
+ isOpen: showTerms,
47329
+ toggleOpen: toggleShowTerms,
47330
+ linkVariant: linkVariant
47331
+ })))));
47332
+ };
47333
+
47334
+ /*
47335
+
47336
+ A utility function that can generate box-shadow values for components
47337
+ Takes a string representing an rgb color value and returns an object
47338
+ with values for standard, inset, and overlay shadows.
47339
+
47340
+ The objects for standard and inset shadows contain versions approiate
47341
+ for base, hover, and active interaction states.
47342
+
47343
+ */
47344
+
47345
+ /*
47346
+ Function to convert string representing rgb color to rgba value with provided opacity
47347
+ ("rgb(41, 42, 51)", "0.1") => "rgba(41, 42, 51, 0.1)"
47348
+
47349
+ */
47350
+ var rgbToRgba = function rgbToRgba() {
47351
+ var rgbValue = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : "";
47352
+ var opacity = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : "";
47353
+
47354
+ if (typeof rgbValue !== "string" || typeof opacity !== "string" || rgbValue.charAt(0) === "#") {
47355
+ return "";
47356
+ }
47357
+
47358
+ return "".concat(rgbValue.slice(0, 3), "a").concat(rgbValue.slice(3, -1), ", ").concat(opacity).concat(rgbValue.slice(-1));
47359
+ };
47360
+
47361
+ var generateShadows = function generateShadows(baseColorRGB) {
47362
+ var colorTen = rgbToRgba(baseColorRGB, "0.1") || "rgba(41, 42, 51, 0.1)";
47363
+ var colorTwenty = rgbToRgba(baseColorRGB, "0.2") || "rgba(41, 42, 51, 0.2)";
47364
+ var colorTwentyFive = rgbToRgba(baseColorRGB, "0.25") || "rgba(41, 42, 51, 0.25)";
47365
+ var colorThirty = rgbToRgba(baseColorRGB, "0.3") || "rgba(41, 42, 51, 0.3)";
47366
+ var blackTwentyFive = "rgba(0, 0, 0, 0.25)";
47367
+ var standard = {
47368
+ base: "0px 1px 2px 0px ".concat(colorTen, ", 0px 2px 6px 0px ").concat(colorTwenty, ", inset 0px 1px 0px 0px ").concat(colorTen),
47369
+ hover: "0px 1px 2px 0px ".concat(colorTwenty, ", 0px 4px 8px 0px ").concat(blackTwentyFive, ", 0px 6px 12px 0px ").concat(colorTen),
47370
+ active: "0px 2px 8px 0px ".concat(colorTwenty, ", 0px 4px 8px 0px ").concat(colorThirty, ", 0px 6px 12px 0px ").concat(colorTwentyFive)
47371
+ };
47372
+ var inset = {
47373
+ base: "0px 1px 2px 0px ".concat(colorTen, ", 0px 2px 4px 0px ").concat(colorTwenty, ", inset 0px 1px 0px 0px ").concat(colorTen),
47374
+ hover: "0px 1px 2px 0px ".concat(colorTen, ", 0px 2px 4px 0px ").concat(colorTwentyFive, ", 0px 4px 8px 0px ").concat(colorTen),
47375
+ active: "0px 1px 2px 2px ".concat(colorTwenty, ", 0px 3px 6px 0px ").concat(colorThirty, ", 0px 4px 8px 0px ").concat(colorTwenty)
47376
+ };
47377
+ var overlay = {
47378
+ base: "0px 7px 32px 0px ".concat(colorTwenty, ", 0px 1px 4px 0px ").concat(colorTwenty, ", 0px 1px 8px -1px ").concat(colorThirty)
47379
+ };
47380
+ return {
47381
+ standard: standard,
47382
+ inset: inset,
47383
+ overlay: overlay
47384
+ };
47385
+ };
47386
+
47387
+ /*
47388
+ Hook that takes an ID selector for an element on the screen
47389
+ And optionally values for top position, left position, smooth behavior
47390
+ Finds element on screen and scrolls it to the provided coordinates
47391
+
47392
+ (string, number, number, string, number) => undefined;
47393
+ */
47394
+ var useScrollTo = function useScrollTo(id) {
47395
+ var top = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 0;
47396
+ var left = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 0;
47397
+ var behavior = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : "auto";
47398
+ var delay = arguments.length > 4 ? arguments[4] : undefined;
47399
+ var scrollItem;
47400
+
47401
+ if (delay) {
47402
+ setTimeout(function () {
47403
+ var _scrollItem;
47404
+
47405
+ scrollItem = document.getElementById(id);
47406
+ (_scrollItem = scrollItem) === null || _scrollItem === void 0 ? void 0 : _scrollItem.scrollTo({
47407
+ top: top,
47408
+ left: left,
47409
+ behavior: behavior
47410
+ });
47411
+ }, delay);
47412
+ } else {
47413
+ var _scrollItem2;
47414
+
47415
+ scrollItem = document.getElementById(id);
47416
+ (_scrollItem2 = scrollItem) === null || _scrollItem2 === void 0 ? void 0 : _scrollItem2.scrollTo({
47417
+ top: top,
47418
+ left: left,
47419
+ behavior: behavior
47420
+ });
47421
+ }
47422
+ };
47423
+
47424
+ var TermsAndConditionsControlV2 = function TermsAndConditionsControlV2(_ref) {
47425
+ var _ref$showCheckbox = _ref.showCheckbox,
47426
+ showCheckbox = _ref$showCheckbox === void 0 ? true : _ref$showCheckbox,
47427
+ onCheck = _ref.onCheck,
47428
+ isChecked = _ref.isChecked,
47429
+ hasError = _ref.hasError,
47430
+ _ref$errorMessage = _ref.errorMessage,
47431
+ errorMessage = _ref$errorMessage === void 0 ? "Please accept Terms and Conditions" : _ref$errorMessage,
47432
+ _ref$description = _ref.description,
47433
+ description = _ref$description === void 0 ? "" : _ref$description,
47434
+ _ref$linkText = _ref.linkText,
47435
+ linkText = _ref$linkText === void 0 ? "Terms and Conditions" : _ref$linkText,
47436
+ html = _ref.html,
47437
+ terms = _ref.terms,
47438
+ _ref$id = _ref.id,
47439
+ id = _ref$id === void 0 ? "terms-and-conditions" : _ref$id,
47440
+ _ref$displayInline = _ref.displayInline,
47441
+ displayInline = _ref$displayInline === void 0 ? true : _ref$displayInline,
47442
+ _ref$modalVariant = _ref.modalVariant,
47443
+ modalVariant = _ref$modalVariant === void 0 ? "default" : _ref$modalVariant,
47444
+ _ref$containerBackgro = _ref.containerBackground,
47445
+ containerBackground = _ref$containerBackgro === void 0 ? ATHENS_GREY : _ref$containerBackgro,
47446
+ _ref$checkboxMargin = _ref.checkboxMargin,
47447
+ checkboxMargin = _ref$checkboxMargin === void 0 ? "4px 8px 4px 4px" : _ref$checkboxMargin,
47448
+ _ref$modalTitle = _ref.modalTitle,
47449
+ modalTitle = _ref$modalTitle === void 0 ? "Terms and Conditions" : _ref$modalTitle;
47450
+
47451
+ var _useState = React.useState(false),
47452
+ _useState2 = _slicedToArray(_useState, 2),
47453
+ showTerms = _useState2[0],
47454
+ toggleShowTerms = _useState2[1];
47455
+
47456
+ var standardBoxShadow = generateShadows().standard.base;
47457
+
47458
+ var toggleTerms = function toggleTerms(termsOpen) {
47459
+ toggleShowTerms(termsOpen);
47460
+
47461
+ if (termsOpen) {
47462
+ useScrollTo("terms-body-text", 0, 0, "smooth", 100);
47463
+ }
47464
+ };
47465
+
47466
+ return /*#__PURE__*/React__default.createElement(Box, {
47467
+ padding: displayInline ? "0" : "1.5rem",
47468
+ minWidth: displayInline ? "0" : "100%",
47469
+ background: displayInline ? "transparent" : containerBackground,
47470
+ boxShadow: displayInline ? "none" : standardBoxShadow,
47471
+ borderRadius: displayInline ? "0" : "4px"
47472
+ }, /*#__PURE__*/React__default.createElement(Stack, {
47473
+ childGap: "0"
47474
+ }, html && /*#__PURE__*/React__default.createElement(Box, {
47475
+ padding: "0"
47476
+ }, html), /*#__PURE__*/React__default.createElement(Cluster, {
47477
+ justify: "flex-start",
47478
+ align: "center",
47479
+ nowrap: true
47480
+ }, showCheckbox && /*#__PURE__*/React__default.createElement(Checkbox$1, {
47481
+ name: id,
47482
+ error: hasError,
47483
+ checked: isChecked,
47484
+ onChange: onCheck,
47485
+ checkboxMargin: checkboxMargin,
47486
+ extraStyles: "align-self: flex-start;"
47487
+ }), /*#__PURE__*/React__default.createElement(Stack, {
47488
+ childGap: "0.25rem",
47489
+ fullHeight: true
47490
+ }, /*#__PURE__*/React__default.createElement(Cluster, {
47491
+ justify: "flex-start",
47492
+ align: "center",
47493
+ nowrap: true,
47494
+ extraStyles: "padding-right: 2px; > div > * { margin: 4px 2px; };"
47495
+ }, description && /*#__PURE__*/React__default.createElement(Text$1, {
47496
+ color: CHARADE_GREY
47497
+ }, description), terms && /*#__PURE__*/React__default.createElement(TermsAndConditionsModal$1, {
47498
+ link: linkText,
47499
+ terms: terms,
47500
+ isOpen: showTerms,
47501
+ toggleOpen: toggleTerms,
47502
+ linkVariant: modalVariant,
47503
+ title: modalTitle
47504
+ })), showCheckbox && hasError && /*#__PURE__*/React__default.createElement(Text$1, {
47505
+ variant: "pXS",
47506
+ color: ERROR_COLOR,
47507
+ id: "".concat(id, "-error-message")
47508
+ }, errorMessage)))));
47509
+ };
47510
+
47511
+ var _excluded$y = ["version"];
47512
+
47513
+ var TermsAndConditions = function TermsAndConditions(_ref) {
47514
+ var _ref$version = _ref.version,
47515
+ version = _ref$version === void 0 ? "v1" : _ref$version,
47516
+ rest = _objectWithoutProperties(_ref, _excluded$y);
47517
+
47518
+ var TermsAndConditionsControl = version === "v1" ? TermsAndConditionsControlV1 : TermsAndConditionsControlV2;
47519
+ return /*#__PURE__*/React__default.createElement(TermsAndConditionsControl, rest);
47520
+ };
45934
47521
 
45935
47522
  var PaymentFormACH = function PaymentFormACH(_ref) {
45936
47523
  var _routingNumberErrors, _accountNumberErrors;
@@ -45950,7 +47537,8 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
45950
47537
  handleSubmit = _ref$handleSubmit === void 0 ? noop : _ref$handleSubmit,
45951
47538
  showWalletCheckbox = _ref.showWalletCheckbox,
45952
47539
  saveToWallet = _ref.saveToWallet,
45953
- walletCheckboxMarked = _ref.walletCheckboxMarked;
47540
+ walletCheckboxMarked = _ref.walletCheckboxMarked,
47541
+ termsContent = _ref.termsContent;
45954
47542
 
45955
47543
  if (clearOnDismount) {
45956
47544
  React.useEffect(function () {
@@ -45970,6 +47558,8 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
45970
47558
  showAccount = _useState4[0],
45971
47559
  toggleShowAccount = _useState4[1];
45972
47560
 
47561
+ var showTerms = !!termsContent;
47562
+
45973
47563
  var nameErrors = _defineProperty({}, required.error, "Name is required");
45974
47564
 
45975
47565
  var routingNumberErrors = (_routingNumberErrors = {}, _defineProperty(_routingNumberErrors, required.error, "Routing number is required"), _defineProperty(_routingNumberErrors, hasLength.error, "Routing number must be 9 digits"), _defineProperty(_routingNumberErrors, isRoutingNumber.error, "Invalid routing number"), _routingNumberErrors);
@@ -46078,12 +47668,22 @@ var PaymentFormACH = function PaymentFormACH(_ref) {
46078
47668
  onChange: toggleCheckbox,
46079
47669
  checked: defaultMethod.value,
46080
47670
  hidden: hideDefaultPayment
46081
- }), showWalletCheckbox && /*#__PURE__*/React__default.createElement(Checkbox$1, {
47671
+ }), (showWalletCheckbox || showTerms) && /*#__PURE__*/React__default.createElement(Cluster, {
47672
+ childGap: "4px",
47673
+ align: "center"
47674
+ }, showWalletCheckbox && /*#__PURE__*/React__default.createElement(Checkbox$1, {
46082
47675
  name: "bank checkbox",
46083
- title: "Save checking account to wallet",
47676
+ title: "Save checking account to wallet.",
46084
47677
  checked: walletCheckboxMarked,
46085
47678
  onChange: saveToWallet
46086
- })));
47679
+ }), showTerms && /*#__PURE__*/React__default.createElement(Cover, {
47680
+ singleChild: true
47681
+ }, /*#__PURE__*/React__default.createElement(TermsAndConditions, {
47682
+ version: "v2",
47683
+ showCheckbox: false,
47684
+ description: "View",
47685
+ terms: termsContent
47686
+ })))));
46087
47687
  };
46088
47688
 
46089
47689
  var formConfig$6 = {
@@ -46137,11 +47737,13 @@ var PaymentFormCard = function PaymentFormCard(_ref) {
46137
47737
  showWalletCheckbox = _ref.showWalletCheckbox,
46138
47738
  saveToWallet = _ref.saveToWallet,
46139
47739
  walletCheckboxMarked = _ref.walletCheckboxMarked,
46140
- deniedCards = _ref.deniedCards;
47740
+ deniedCards = _ref.deniedCards,
47741
+ termsContent = _ref.termsContent;
46141
47742
 
46142
47743
  var _useContext = React.useContext(styled.ThemeContext),
46143
47744
  isMobile = _useContext.isMobile;
46144
47745
 
47746
+ var showTerms = !!termsContent;
46145
47747
  React.useEffect(function () {
46146
47748
  if (deniedCards) {
46147
47749
  deniedCards.map(function (card) {
@@ -46250,12 +47852,22 @@ var PaymentFormCard = function PaymentFormCard(_ref) {
46250
47852
  return e.key === "Enter" && handleSubmit(e);
46251
47853
  },
46252
47854
  autocomplete: "billing postal-code"
46253
- })), showWalletCheckbox && /*#__PURE__*/React__default.createElement(Checkbox$1, {
47855
+ })), (showWalletCheckbox || showTerms) && /*#__PURE__*/React__default.createElement(Cluster, {
47856
+ childGap: "4px",
47857
+ align: "center"
47858
+ }, showWalletCheckbox && /*#__PURE__*/React__default.createElement(Checkbox$1, {
46254
47859
  name: "credit card checkbox",
46255
- title: "Save credit card to wallet",
47860
+ title: "Save credit card to wallet.",
46256
47861
  checked: walletCheckboxMarked,
46257
47862
  onChange: saveToWallet
46258
- })));
47863
+ }), showTerms && /*#__PURE__*/React__default.createElement(Cover, {
47864
+ singleChild: true
47865
+ }, /*#__PURE__*/React__default.createElement(TermsAndConditions, {
47866
+ version: "v2",
47867
+ showCheckbox: false,
47868
+ description: "View",
47869
+ terms: termsContent
47870
+ })))));
46259
47871
  };
46260
47872
 
46261
47873
  var PaymentFormCard$1 = withWindowSize(PaymentFormCard);
@@ -46534,13 +48146,13 @@ var RadioGroup = function RadioGroup(_ref) {
46534
48146
  var headingBackgroundColor$1 = "".concat(WHITE);
46535
48147
  var headingDisabledColor = "".concat(ATHENS_GREY);
46536
48148
  var bodyBackgroundColor$1 = "#eeeeee";
46537
- var borderColor$3 = "".concat(GREY_CHATEAU);
48149
+ var borderColor$5 = "".concat(GREY_CHATEAU);
46538
48150
  var focusStyles = "outline: none;";
46539
- var fallbackValues$I = {
48151
+ var fallbackValues$N = {
46540
48152
  headingBackgroundColor: headingBackgroundColor$1,
46541
48153
  headingDisabledColor: headingDisabledColor,
46542
48154
  bodyBackgroundColor: bodyBackgroundColor$1,
46543
- borderColor: borderColor$3,
48155
+ borderColor: borderColor$5,
46544
48156
  focusStyles: focusStyles
46545
48157
  };
46546
48158
 
@@ -46553,7 +48165,8 @@ var fallbackValues$I = {
46553
48165
  hideRadioButton: boolean, (keeps section displayed but hides radio and disables open/close function),
46554
48166
  hidden: boolean, (hides section entirely)
46555
48167
  dataQa: string,
46556
- content: <React Component(s)> e.g.: <Box><Stack>cool content stuff</Stack></Box> (any collection of components will work)
48168
+ content: <React Component(s)> e.g.: <Box><Stack>cool content stuff</Stack></Box> (any collection of components will work),
48169
+ rightTitleContent: <React Component(s)> (rendered on the very right of the title section, use to supplement "rightIcons" with text, as in expired CC status, or render other custom content)
46557
48170
  }
46558
48171
 
46559
48172
  Also takes an "openSection" which should equal the id of the section that should be open
@@ -46566,10 +48179,6 @@ var fallbackValues$I = {
46566
48179
 
46567
48180
  */
46568
48181
 
46569
- var ACTIVE$2 = "ACTIVE";
46570
- var EXPIRING_SOON$1 = "EXPIRING_SOON";
46571
- var EXPIRED$2 = "EXPIRED";
46572
-
46573
48182
  var RadioSection = function RadioSection(_ref) {
46574
48183
  var themeValues = _ref.themeValues,
46575
48184
  isMobile = _ref.isMobile,
@@ -46584,7 +48193,8 @@ var RadioSection = function RadioSection(_ref) {
46584
48193
  _ref$initiallyOpen = _ref.initiallyOpen,
46585
48194
  initiallyOpen = _ref$initiallyOpen === void 0 ? true : _ref$initiallyOpen,
46586
48195
  _ref$openHeight = _ref.openHeight,
46587
- openHeight = _ref$openHeight === void 0 ? "auto" : _ref$openHeight;
48196
+ openHeight = _ref$openHeight === void 0 ? "auto" : _ref$openHeight,
48197
+ ariaDescribedBy = _ref.ariaDescribedBy;
46588
48198
 
46589
48199
  var handleKeyDown = function handleKeyDown(id, e) {
46590
48200
  if ((e === null || e === void 0 ? void 0 : e.keyCode) === 13) {
@@ -46592,34 +48202,6 @@ var RadioSection = function RadioSection(_ref) {
46592
48202
  }
46593
48203
  };
46594
48204
 
46595
- var renderCardStatus = function renderCardStatus(item) {
46596
- var expirationStatus = item.expirationStatus,
46597
- expireDate = item.expireDate;
46598
-
46599
- switch (expirationStatus) {
46600
- case ACTIVE$2:
46601
- return /*#__PURE__*/React__default.createElement(Text$1, {
46602
- variant: "pXS",
46603
- color: ASH_GREY,
46604
- extraStyles: "text-align: right;"
46605
- }, "Exp Date ", expireDate);
46606
-
46607
- case EXPIRING_SOON$1:
46608
- return /*#__PURE__*/React__default.createElement(Text$1, {
46609
- variant: "pXS",
46610
- color: FIRE_YELLOW,
46611
- extraStyles: "text-align: right;"
46612
- }, "Expiring Soon ", expireDate);
46613
-
46614
- case EXPIRED$2:
46615
- return /*#__PURE__*/React__default.createElement(Text$1, {
46616
- variant: "pXS",
46617
- color: ASH_GREY,
46618
- extraStyles: "text-align: right;"
46619
- }, "Expired");
46620
- }
46621
- };
46622
-
46623
48205
  var wrapper = {
46624
48206
  open: {
46625
48207
  height: openHeight,
@@ -46673,13 +48255,13 @@ var RadioSection = function RadioSection(_ref) {
46673
48255
  return /*#__PURE__*/React__default.createElement(Motion, {
46674
48256
  tabIndex: section.hideRadioButton || section.disabled ? "-1" : "0",
46675
48257
  onKeyDown: function onKeyDown(e) {
46676
- return handleKeyDown(section.id, e);
48258
+ return !section.disabled && handleKeyDown(section.id, e);
46677
48259
  },
46678
48260
  onFocus: function onFocus() {
46679
- return setFocused(section.id);
48261
+ return !section.disabled && setFocused(section.id);
46680
48262
  },
46681
48263
  onBlur: function onBlur() {
46682
- return setFocused(null);
48264
+ return !section.disabled && setFocused(null);
46683
48265
  },
46684
48266
  hoverStyles: themeValues.focusStyles,
46685
48267
  animate: openSection === section.id ? "open" : "closed",
@@ -46689,12 +48271,12 @@ var RadioSection = function RadioSection(_ref) {
46689
48271
  }, /*#__PURE__*/React__default.createElement(Stack, {
46690
48272
  childGap: "0"
46691
48273
  }, /*#__PURE__*/React__default.createElement(Box, {
46692
- padding: section.hideRadioButton ? "1.5rem" : "1.25rem 1.5rem 1.25rem 1.25rem",
48274
+ padding: section.hideRadioButton ? "1.5rem" : "1.25rem 1.5rem",
46693
48275
  background: section.disabled ? themeValues.headingDisabledColor : themeValues.headingBackgroundColor,
46694
48276
  onClick: isMobile && supportsTouch || section.disabled ? noop : function () {
46695
48277
  return toggleOpenSection(section.id);
46696
48278
  },
46697
- onTouchEnd: isMobile && supportsTouch || !section.disabled ? function () {
48279
+ onTouchEnd: isMobile && supportsTouch && !section.disabled ? function () {
46698
48280
  return toggleOpenSection(section.id);
46699
48281
  } : noop,
46700
48282
  key: "header-".concat(section.id),
@@ -46706,7 +48288,7 @@ var RadioSection = function RadioSection(_ref) {
46706
48288
  }, /*#__PURE__*/React__default.createElement(Cluster, {
46707
48289
  justify: "space-between",
46708
48290
  align: "center",
46709
- childGap: "0.5rem",
48291
+ childGap: "1px",
46710
48292
  nowrap: true
46711
48293
  }, /*#__PURE__*/React__default.createElement(Cluster, {
46712
48294
  justify: "flex-start",
@@ -46715,7 +48297,8 @@ var RadioSection = function RadioSection(_ref) {
46715
48297
  }, !section.hideRadioButton && /*#__PURE__*/React__default.createElement(Box, {
46716
48298
  padding: "0"
46717
48299
  }, /*#__PURE__*/React__default.createElement(RadioButton$2, {
46718
- name: section.id,
48300
+ name: typeof section.title === "string" ? createIdFromString(section.title) : section.id,
48301
+ ariaDescribedBy: ariaDescribedBy,
46719
48302
  radioOn: openSection === section.id,
46720
48303
  radioFocused: focused === section.id,
46721
48304
  toggleRadio: section.disabled ? noop : function () {
@@ -46739,7 +48322,7 @@ var RadioSection = function RadioSection(_ref) {
46739
48322
  isMobile: isMobile,
46740
48323
  alt: icon.altText
46741
48324
  });
46742
- })), section.shouldDisplayCardExpiration && /*#__PURE__*/React__default.createElement(React.Fragment, null, renderCardStatus(section)))), /*#__PURE__*/React__default.createElement(AnimatePresence, {
48325
+ })), section.rightTitleContent && /*#__PURE__*/React__default.createElement(React.Fragment, null, section.rightTitleContent))), /*#__PURE__*/React__default.createElement(AnimatePresence, {
46743
48326
  initial: false
46744
48327
  }, openSection === section.id && /*#__PURE__*/React__default.createElement(Motion, {
46745
48328
  key: "content-".concat(section.id),
@@ -46755,7 +48338,7 @@ var RadioSection = function RadioSection(_ref) {
46755
48338
  })));
46756
48339
  };
46757
48340
 
46758
- var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$I);
48341
+ var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$N);
46759
48342
 
46760
48343
  var RegistrationForm = function RegistrationForm(_ref) {
46761
48344
  var _emailErrorMessages, _passwordErrorMessage;
@@ -47052,7 +48635,7 @@ var ResetPasswordSuccess = withWindowSize(ResetConfirmationForm$2);
47052
48635
  var activeTabBackground = "#FFFFFF";
47053
48636
  var activeTabAccent = "#15749D";
47054
48637
  var activeTabHover = "#B8D5E1";
47055
- var fallbackValues$J = {
48638
+ var fallbackValues$O = {
47056
48639
  activeTabBackground: activeTabBackground,
47057
48640
  activeTabAccent: activeTabAccent,
47058
48641
  activeTabHover: activeTabHover
@@ -47131,12 +48714,12 @@ var Tabs = function Tabs(_ref) {
47131
48714
  }))));
47132
48715
  };
47133
48716
 
47134
- var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$J);
48717
+ var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$O);
47135
48718
 
47136
48719
  var activeTabBackground$1 = "#FFFFFF";
47137
48720
  var activeTabAccent$1 = "#15749D";
47138
48721
  var activeTabHover$1 = "#B8D5E1";
47139
- var fallbackValues$K = {
48722
+ var fallbackValues$P = {
47140
48723
  activeTabBackground: activeTabBackground$1,
47141
48724
  activeTabAccent: activeTabAccent$1,
47142
48725
  activeTabHover: activeTabHover$1
@@ -47192,131 +48775,7 @@ var TabSidebar = function TabSidebar(_ref) {
47192
48775
  })));
47193
48776
  };
47194
48777
 
47195
- var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$K);
47196
-
47197
- var backgroundColor$b = {
47198
- "default": "#ffffff",
47199
- footer: "#ffffff"
47200
- };
47201
- var linkColor$6 = {
47202
- "default": "#3176AA",
47203
- footer: "#ffffff"
47204
- };
47205
- var border$3 = {
47206
- "default": "#cdcdcd",
47207
- footer: "#cdcdcd"
47208
- };
47209
- var fontSize$b = {
47210
- "default": "1rem",
47211
- footer: "0.875rem"
47212
- };
47213
- var lineHeight$5 = {
47214
- "default": "1.5rem",
47215
- footer: "1.25rem"
47216
- };
47217
- var fontWeight$8 = {
47218
- "default": FONT_WEIGHT_REGULAR,
47219
- footer: FONT_WEIGHT_SEMIBOLD
47220
- };
47221
- var standardInteractionStyles = "\n &:hover {\n outline: none; \n text-decoration: underline;\n }\n &:focus {\n outline: 3px solid #3181E3;\n outline-offset: 2px;\n }\n";
47222
- var modalLinkHoverFocus$2 = {
47223
- "default": standardInteractionStyles,
47224
- footer: standardInteractionStyles
47225
- };
47226
- var fallbackValues$L = {
47227
- backgroundColor: backgroundColor$b,
47228
- linkColor: linkColor$6,
47229
- border: border$3,
47230
- fontSize: fontSize$b,
47231
- lineHeight: lineHeight$5,
47232
- fontWeight: fontWeight$8,
47233
- modalLinkHoverFocus: modalLinkHoverFocus$2
47234
- };
47235
-
47236
- var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
47237
- var link = _ref.link,
47238
- _ref$title = _ref.title,
47239
- title = _ref$title === void 0 ? "Terms & Conditions" : _ref$title,
47240
- isOpen = _ref.isOpen,
47241
- toggleOpen = _ref.toggleOpen,
47242
- toggleAccepted = _ref.toggleAccepted,
47243
- acceptText = _ref.acceptText,
47244
- terms = _ref.terms,
47245
- variant = _ref.variant,
47246
- themeValues = _ref.themeValues;
47247
- return /*#__PURE__*/React__default.createElement(Modal$1, {
47248
- modalOpen: isOpen,
47249
- hideModal: function hideModal() {
47250
- return toggleOpen(false);
47251
- },
47252
- showModal: function showModal() {
47253
- return toggleOpen(true);
47254
- },
47255
- modalHeaderText: title,
47256
- modalBodyText: /*#__PURE__*/React__default.createElement(Box, {
47257
- background: themeValues.backgroundColor,
47258
- border: "1px solid ".concat(themeValues.border),
47259
- borderRadius: "3px",
47260
- extraStyles: "overflow: scroll; max-height: 20rem;"
47261
- }, /*#__PURE__*/React__default.createElement(Text$1, {
47262
- variant: "p",
47263
- extraStyles: "& a { text-decoration: underline; }"
47264
- }, terms)),
47265
- defaultWrapper: false,
47266
- onlyCloseButton: !acceptText,
47267
- continueButtonText: acceptText,
47268
- continueAction: function continueAction() {
47269
- toggleAccepted(true);
47270
- toggleOpen(false);
47271
- }
47272
- }, /*#__PURE__*/React__default.createElement(Text$1, {
47273
- variant: variant === "default" ? "pS" : "pXS",
47274
- onClick: function onClick() {
47275
- return toggleOpen(true);
47276
- },
47277
- onKeyPress: function onKeyPress(e) {
47278
- return e.key === "Enter" && toggleOpen(true);
47279
- },
47280
- tabIndex: "0",
47281
- color: themeValues.linkColor,
47282
- weight: themeValues.fontWeight,
47283
- hoverStyles: themeValues.modalLinkHoverFocus,
47284
- extraStyles: "display: inline-block; width: fit-content;"
47285
- }, link));
47286
- };
47287
-
47288
- var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$L, "default");
47289
-
47290
- var TermsAndConditions = function TermsAndConditions(_ref) {
47291
- var onCheck = _ref.onCheck,
47292
- isChecked = _ref.isChecked,
47293
- html = _ref.html,
47294
- terms = _ref.terms,
47295
- _ref$error = _ref.error,
47296
- error = _ref$error === void 0 ? false : _ref$error;
47297
-
47298
- var _useState = React.useState(false),
47299
- _useState2 = _slicedToArray(_useState, 2),
47300
- showTerms = _useState2[0],
47301
- toggleShowTerms = _useState2[1];
47302
-
47303
- return /*#__PURE__*/React__default.createElement(DisplayBox$1, null, /*#__PURE__*/React__default.createElement(Stack, null, /*#__PURE__*/React__default.createElement(Checkbox$1, {
47304
- name: "terms",
47305
- title: "Terms and Conditions",
47306
- error: error,
47307
- checked: isChecked,
47308
- onChange: onCheck
47309
- }), /*#__PURE__*/React__default.createElement(Box, {
47310
- padding: "0 0 0 58px"
47311
- }, /*#__PURE__*/React__default.createElement(Stack, null, /*#__PURE__*/React__default.createElement(Box, {
47312
- padding: "0"
47313
- }, html), terms && /*#__PURE__*/React__default.createElement(TermsAndConditionsModal$1, {
47314
- link: "Learn More",
47315
- terms: terms,
47316
- isOpen: showTerms,
47317
- toggleOpen: toggleShowTerms
47318
- })))));
47319
- };
48778
+ var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$P);
47320
48779
 
47321
48780
  var Timeout = function Timeout(_ref) {
47322
48781
  var onLogout = _ref.onLogout;
@@ -47360,7 +48819,7 @@ var fontColor$1 = WHITE;
47360
48819
  var textAlign$1 = "left";
47361
48820
  var headerBackgroundColor$1 = BRIGHT_GREY;
47362
48821
  var imageBackgroundColor$1 = MATISSE_BLUE;
47363
- var fallbackValues$M = {
48822
+ var fallbackValues$Q = {
47364
48823
  fontWeight: fontWeight$9,
47365
48824
  fontColor: fontColor$1,
47366
48825
  textAlign: textAlign$1,
@@ -47407,7 +48866,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
47407
48866
  })))));
47408
48867
  };
47409
48868
 
47410
- var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$M));
48869
+ var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$Q));
47411
48870
 
47412
48871
  var WorkflowTile = function WorkflowTile(_ref) {
47413
48872
  var _ref$workflowName = _ref.workflowName,
@@ -47462,7 +48921,7 @@ var WorkflowTile = function WorkflowTile(_ref) {
47462
48921
  };
47463
48922
 
47464
48923
  var pageBackground = "#FBFCFD";
47465
- var fallbackValues$N = {
48924
+ var fallbackValues$R = {
47466
48925
  pageBackground: pageBackground
47467
48926
  };
47468
48927
 
@@ -47509,7 +48968,7 @@ var CenterSingle = function CenterSingle(_ref) {
47509
48968
  })));
47510
48969
  };
47511
48970
 
47512
- var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$N));
48971
+ var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$R));
47513
48972
 
47514
48973
  var CenterStack = function CenterStack(_ref) {
47515
48974
  var header = _ref.header,
@@ -47551,7 +49010,7 @@ var CenterStack = function CenterStack(_ref) {
47551
49010
  })));
47552
49011
  };
47553
49012
 
47554
- var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$N));
49013
+ var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$R));
47555
49014
 
47556
49015
  var CenterSingle$2 = function CenterSingle(_ref) {
47557
49016
  var header = _ref.header,
@@ -47596,7 +49055,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
47596
49055
  })));
47597
49056
  };
47598
49057
 
47599
- var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$N));
49058
+ var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$R));
47600
49059
 
47601
49060
  var SidebarSingleContent = function SidebarSingleContent(_ref) {
47602
49061
  var header = _ref.header,
@@ -47650,7 +49109,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
47650
49109
  })));
47651
49110
  };
47652
49111
 
47653
- var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$N));
49112
+ var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$R));
47654
49113
 
47655
49114
  var SidebarStackContent = function SidebarStackContent(_ref) {
47656
49115
  var header = _ref.header,
@@ -47721,7 +49180,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
47721
49180
  })));
47722
49181
  };
47723
49182
 
47724
- var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$N));
49183
+ var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$R));
47725
49184
 
47726
49185
  exports.AccountNumberImage = AccountNumberImage;
47727
49186
  exports.AccountsAddIcon = AccountsAddIcon$1;
@@ -47733,8 +49192,14 @@ exports.AddressForm = AddressForm;
47733
49192
  exports.Alert = Alert$1;
47734
49193
  exports.AllocatedIcon = AllocatedIcon;
47735
49194
  exports.AmountCallout = AmountCallout$1;
49195
+ exports.ArrowDownCircleIconSmall = ArrowDownCircleIconSmall;
49196
+ exports.ArrowLeftCircleIconMedium = ArrowLeftCircleIconMedium;
49197
+ exports.ArrowLeftCircleIconSmall = ArrowLeftCircleIconSmall;
49198
+ exports.ArrowRightCircleIconSmall = ArrowRightCircleIconSmall;
49199
+ exports.ArrowUpCircleIconSmall = ArrowUpCircleIconSmall;
47736
49200
  exports.AutopayOnIcon = AutopayOnIcon;
47737
49201
  exports.BankIcon = BankIcon;
49202
+ exports.BankIconLarge = BankIconLarge;
47738
49203
  exports.Banner = Banner$1;
47739
49204
  exports.Box = Box;
47740
49205
  exports.BoxWithShadow = BoxWithShadow$1;
@@ -47750,7 +49215,11 @@ exports.CenterSingle = CenterSingle$1;
47750
49215
  exports.CenterStack = CenterStack$1;
47751
49216
  exports.ChangePasswordForm = ChangePasswordForm;
47752
49217
  exports.ChargebackIcon = ChargebackIcon;
49218
+ exports.ChargebackIconMedium = ChargebackIconMedium;
49219
+ exports.ChargebackIconSmall = ChargebackIconSmall;
47753
49220
  exports.ChargebackReversalIcon = ChargebackReversalIcon;
49221
+ exports.ChargebackReversalIconMedium = ChargebackReversalIconMedium;
49222
+ exports.ChargebackReversalIconSmall = ChargebackReversalIconSmall;
47754
49223
  exports.CheckIcon = CheckIcon;
47755
49224
  exports.Checkbox = Checkbox$1;
47756
49225
  exports.CheckboxList = CheckboxList$1;
@@ -47788,6 +49257,7 @@ exports.FormInputColumn = FormInputColumn;
47788
49257
  exports.FormInputRow = FormInputRow;
47789
49258
  exports.FormSelect = FormSelect$1;
47790
49259
  exports.FormattedAddress = FormattedAddress$1;
49260
+ exports.FormattedBankAccount = FormattedBankAccount$1;
47791
49261
  exports.FormattedCreditCard = FormattedCreditCard$1;
47792
49262
  exports.Frame = Frame;
47793
49263
  exports.GenericCard = GenericCard;
@@ -47798,8 +49268,10 @@ exports.GuidedCheckoutImage = GuidedCheckoutImage;
47798
49268
  exports.HamburgerButton = HamburgerButton;
47799
49269
  exports.Heading = Heading$1;
47800
49270
  exports.HighlightTabRow = HighlightTabRow$1;
49271
+ exports.HistoryIconSmall = HistoryIconSmall$1;
47801
49272
  exports.IconAdd = IconAdd;
47802
49273
  exports.IconQuitLarge = IconQuitLarge;
49274
+ exports.ImageBox = ImageBox;
47803
49275
  exports.Imposter = Imposter;
47804
49276
  exports.InternalLink = InternalLink;
47805
49277
  exports.Jumbo = Jumbo$1;
@@ -47821,7 +49293,7 @@ exports.NoPaymentResultsIcon = NoPaymentResultsIcon;
47821
49293
  exports.NotFoundIcon = NotFoundIcon;
47822
49294
  exports.Obligation = Obligation;
47823
49295
  exports.ObligationIcons = iconsMap;
47824
- exports.Pagination = Pagination;
49296
+ exports.Pagination = Pagination$1;
47825
49297
  exports.Paragraph = Paragraph$1;
47826
49298
  exports.PartialAmountForm = PartialAmountForm;
47827
49299
  exports.PasswordRequirements = PasswordRequirements;
@@ -47829,11 +49301,11 @@ exports.PaymentButtonBar = PaymentButtonBar;
47829
49301
  exports.PaymentDetails = PaymentDetails$1;
47830
49302
  exports.PaymentFormACH = PaymentFormACH;
47831
49303
  exports.PaymentFormCard = PaymentFormCard$1;
47832
- exports.PaymentIcon = PaymentIcon;
47833
49304
  exports.PaymentMethodAddIcon = PaymentMethodAddIcon$1;
47834
49305
  exports.PaymentMethodIcon = PaymentMethodIcon$1;
47835
49306
  exports.PaymentSearchIcon = PaymentSearchIcon;
47836
49307
  exports.PaymentsIconSmall = PaymentsIconSmall$1;
49308
+ exports.PencilIcon = PencilIcon$1;
47837
49309
  exports.PendingIcon = PendingIcon;
47838
49310
  exports.PeriscopeDashboardIframe = PeriscopeDashboardIframe;
47839
49311
  exports.PeriscopeFailedIcon = PeriscopeFailedIcon;
@@ -47852,6 +49324,8 @@ exports.RadioGroup = RadioGroup;
47852
49324
  exports.RadioSection = RadioSection$1;
47853
49325
  exports.Reel = Reel;
47854
49326
  exports.RefundIcon = RefundIcon;
49327
+ exports.RefundIconMedium = RefundIconMedium;
49328
+ exports.RefundIconSmall = RefundIconSmall;
47855
49329
  exports.RegistrationForm = RegistrationForm;
47856
49330
  exports.RejectedIcon = RejectedIcon;
47857
49331
  exports.RejectedVelocityIcon = RejectedVelocityIcon;
@@ -47875,9 +49349,17 @@ exports.StandardCheckoutImage = StandardCheckoutImage;
47875
49349
  exports.StateProvinceDropdown = FormStateDropdown;
47876
49350
  exports.StatusUnknownIcon = StatusUnknownIcon;
47877
49351
  exports.SuccessfulIcon = SuccessfulIcon;
49352
+ exports.SuccessfulIconMedium = SuccessfulIconMedium;
49353
+ exports.SuccessfulIconSmall = SuccessfulIconSmall;
47878
49354
  exports.Switcher = Switcher;
47879
49355
  exports.TabSidebar = TabSidebar$1;
49356
+ exports.Table = Table_styled;
49357
+ exports.TableBody = TableBody_styled;
49358
+ exports.TableCell = TableCell_styled;
49359
+ exports.TableHead = TableHead$1;
49360
+ exports.TableHeading = TableHeading_styled;
47880
49361
  exports.TableListItem = TableListItem;
49362
+ exports.TableRow = TableRow$1;
47881
49363
  exports.Tabs = Tabs$1;
47882
49364
  exports.TermsAndConditions = TermsAndConditions;
47883
49365
  exports.TermsAndConditionsModal = TermsAndConditionsModal$1;
@@ -47896,6 +49378,8 @@ exports.WalletIconSmall = WalletIconSmall$1;
47896
49378
  exports.WarningIconXS = WarningIconXS;
47897
49379
  exports.WelcomeModule = WelcomeModule$1;
47898
49380
  exports.WorkflowTile = WorkflowTile;
49381
+ exports.XCircleIconMedium = XCircleIconMedium;
49382
+ exports.XCircleIconSmall = XCircleIconSmall;
47899
49383
  exports.cardRegistry = cardRegistry;
47900
49384
  exports.constants = index$5;
47901
49385
  exports.createPartialAmountFormState = createPartialAmountFormState;