@thecb/components 10.7.8 → 10.8.0-beta.0

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
@@ -14714,10 +14714,14 @@ var NotFoundIcon = function NotFoundIcon() {
14714
14714
  }))))));
14715
14715
  };
14716
14716
 
14717
- var SearchIcon = function SearchIcon() {
14717
+ var SearchIcon = function SearchIcon(_ref) {
14718
+ var _ref$color = _ref.color,
14719
+ color = _ref$color === void 0 ? CHARADE_GREY : _ref$color,
14720
+ _ref$size = _ref.size,
14721
+ size = _ref$size === void 0 ? "22px" : _ref$size;
14718
14722
  return /*#__PURE__*/React__default.createElement("svg", {
14719
- width: "22px",
14720
- height: "22px",
14723
+ width: size,
14724
+ height: size,
14721
14725
  viewBox: "0 0 22 22",
14722
14726
  version: "1.1"
14723
14727
  }, /*#__PURE__*/React__default.createElement("g", {
@@ -14729,7 +14733,7 @@ var SearchIcon = function SearchIcon() {
14729
14733
  }, /*#__PURE__*/React__default.createElement("g", {
14730
14734
  id: "Debt-Search---Expanded",
14731
14735
  transform: "translate(-155.000000, -258.000000)",
14732
- stroke: "#292A33",
14736
+ stroke: color,
14733
14737
  strokeWidth: "2"
14734
14738
  }, /*#__PURE__*/React__default.createElement("g", {
14735
14739
  id: "debt-search",
@@ -28577,10 +28581,113 @@ var RadioButton$1 = function RadioButton(_ref2) {
28577
28581
  };
28578
28582
  var RadioButton$2 = themeComponent(RadioButton$1, "RadioButton", fallbackValues$v);
28579
28583
 
28584
+ var searchIconColor = WHITE;
28585
+ var searchIconBackgroundColor = MATISSE_BLUE;
28586
+ var fallbackValues$w = {
28587
+ searchIconColor: searchIconColor,
28588
+ searchIconBackgroundColor: searchIconBackgroundColor
28589
+ };
28590
+
28591
+ /**
28592
+ * Search accepts a redux-freeform field and actions to use
28593
+ * for its `FormInput` state, as well as a dataset and the keys you wish
28594
+ * to include in your search.
28595
+ *
28596
+ * The `dataset` expected is a one-dimensional array of objects.
28597
+ * Properties within the objects are included in the traversal
28598
+ * when they are present in the ``valuesToSearchFor` prop.
28599
+ *
28600
+ * This component expects implementations of `onSearchCallback` and `onClearCallback`
28601
+ * in the consuming application. For example, if you want to filter a table based on
28602
+ * this search, this would trigger the adjustment of your table data's state in your
28603
+ * consuming application.
28604
+ */
28605
+
28606
+ var Search = function Search(_ref) {
28607
+ var actions = _ref.actions,
28608
+ fields = _ref.fields,
28609
+ dataset = _ref.dataset,
28610
+ valuesToSearchFor = _ref.valuesToSearchFor,
28611
+ onSearchCallback = _ref.onSearchCallback,
28612
+ onClearCallback = _ref.onClearCallback,
28613
+ disabled = _ref.disabled,
28614
+ _ref$placeholder = _ref.placeholder,
28615
+ placeholder = _ref$placeholder === void 0 ? "Search" : _ref$placeholder,
28616
+ _ref$searchOnKeypress = _ref.searchOnKeypress,
28617
+ searchOnKeypress = _ref$searchOnKeypress === void 0 ? false : _ref$searchOnKeypress,
28618
+ _ref$searchContainerW = _ref.searchContainerWidth,
28619
+ searchContainerWidth = _ref$searchContainerW === void 0 ? null : _ref$searchContainerW,
28620
+ _ref$searchFieldName = _ref.searchFieldName,
28621
+ searchFieldName = _ref$searchFieldName === void 0 ? "searchTerm" : _ref$searchFieldName,
28622
+ autocompleteValue = _ref.autocompleteValue,
28623
+ ariaControlsId = _ref.ariaControlsId,
28624
+ themeValues = _ref.themeValues;
28625
+ var searchTerm = fields[searchFieldName].rawValue;
28626
+ var getFilteredDataset = function getFilteredDataset() {
28627
+ if (!searchTerm) return dataset;
28628
+ return dataset.filter(function (item) {
28629
+ return valuesToSearchFor.some(function (key) {
28630
+ var _item$key;
28631
+ return (_item$key = item[key]) === null || _item$key === void 0 ? void 0 : _item$key.toString().toLowerCase().includes(searchTerm.toLowerCase());
28632
+ });
28633
+ });
28634
+ };
28635
+ var handleSubmit = function handleSubmit() {
28636
+ return onSearchCallback(getFilteredDataset());
28637
+ };
28638
+ return /*#__PURE__*/React__default.createElement(Cluster, {
28639
+ extraStyles: "overflow: visible;"
28640
+ }, /*#__PURE__*/React__default.createElement(Box, {
28641
+ padding: "0",
28642
+ extraStyles: "\n flex-grow: ".concat(searchContainerWidth ? 0 : 1, "; \n width: ").concat(searchContainerWidth, " : auto;")
28643
+ }, /*#__PURE__*/React__default.createElement(FormInput$1, {
28644
+ id: "searchInput",
28645
+ role: "search",
28646
+ "aria-controls": ariaControlsId,
28647
+ autocompleteValue: autocompleteValue,
28648
+ extraStyles: "border-radius: 2px 0 0 2px;",
28649
+ onKeyDown: function onKeyDown(e) {
28650
+ return searchOnKeypress || e.key === "Enter" ? handleSubmit() : noop;
28651
+ },
28652
+ field: fields[searchFieldName],
28653
+ fieldActions: actions.fields[searchFieldName],
28654
+ placeholder: placeholder,
28655
+ errorMessages: {},
28656
+ disabled: disabled
28657
+ }), searchTerm.length > 0 && /*#__PURE__*/React__default.createElement(Box, {
28658
+ padding: "0",
28659
+ extraStyles: "\n position: absolute;\n right: 8px;\n top: 10px;\n "
28660
+ }, /*#__PURE__*/React__default.createElement(ButtonWithAction, {
28661
+ extraStyles: "* > span { text-decoration: none; }",
28662
+ type: "reset",
28663
+ variant: "smallGhost",
28664
+ text: "Clear Search",
28665
+ "aria-label": "Clear Search",
28666
+ action: function action() {
28667
+ actions.fields[searchFieldName].set("");
28668
+ onClearCallback();
28669
+ }
28670
+ }))), /*#__PURE__*/React__default.createElement(ButtonWithAction, {
28671
+ type: "submit",
28672
+ "aria-label": "Submit search",
28673
+ minWidth: "0",
28674
+ width: "3rem",
28675
+ padding: ".5rem",
28676
+ extraStyles: "\n height: 48px; \n margin: 4px 0 0;\n border-radius: 0 2px 2px 0;\n background: ".concat(themeValues.searchIconBackgroundColor, ";\n "),
28677
+ variant: "primary",
28678
+ contentOverride: true,
28679
+ action: handleSubmit
28680
+ }, /*#__PURE__*/React__default.createElement(SearchIcon, {
28681
+ color: themeValues.searchIconColor,
28682
+ size: 24
28683
+ })));
28684
+ };
28685
+ var Search$1 = themeComponent(Search, "Search", fallbackValues$w);
28686
+
28580
28687
  var border$2 = {
28581
28688
  "default": "1px solid #caced8"
28582
28689
  };
28583
- var fallbackValues$w = {
28690
+ var fallbackValues$x = {
28584
28691
  border: border$2
28585
28692
  };
28586
28693
 
@@ -28653,7 +28760,7 @@ var SearchableSelect = function SearchableSelect(_ref) {
28653
28760
  });
28654
28761
  }))));
28655
28762
  };
28656
- var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$w, "default");
28763
+ var SearchableSelect$1 = themeComponent(SearchableSelect, "SearchableSelect", fallbackValues$x, "default");
28657
28764
 
28658
28765
  var borderColor$2 = {
28659
28766
  "default": "".concat(GREY_CHATEAU)
@@ -28661,7 +28768,7 @@ var borderColor$2 = {
28661
28768
  var borderSize = {
28662
28769
  "default": "1px"
28663
28770
  };
28664
- var fallbackValues$x = {
28771
+ var fallbackValues$y = {
28665
28772
  borderColor: borderColor$2,
28666
28773
  borderSize: borderSize
28667
28774
  };
@@ -28679,7 +28786,7 @@ var SolidDivider = function SolidDivider(_ref) {
28679
28786
  borderWidthOverride: "0px 0px ".concat(borderSize || themeValues.borderSize, " 0px")
28680
28787
  });
28681
28788
  };
28682
- var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$x, "default");
28789
+ var SolidDivider$1 = themeComponent(SolidDivider, "SolidDivider", fallbackValues$y, "default");
28683
28790
 
28684
28791
  var placeHolderOptionUS = {
28685
28792
  text: "Please select state",
@@ -39265,7 +39372,7 @@ var white = "".concat(WHITE);
39265
39372
  var labelStyles = "\n display: flex;\n justify-content: flex-start;\n align-items: center;\n";
39266
39373
  var rightLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row;\n");
39267
39374
  var leftLabelStyles = "\n ".concat(labelStyles, "\n flex-direction: row-reverse;\n");
39268
- var fallbackValues$y = {
39375
+ var fallbackValues$z = {
39269
39376
  onBackground: onBackground,
39270
39377
  disabledBackground: disabledBackground,
39271
39378
  disabledBackgroundLight: disabledBackgroundLight,
@@ -39442,7 +39549,7 @@ var ToggleSwitch = function ToggleSwitch(_ref10) {
39442
39549
  padding: "0"
39443
39550
  }, label))));
39444
39551
  };
39445
- var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$y);
39552
+ var ToggleSwitch$1 = themeComponent(ToggleSwitch, "ToggleSwitch", fallbackValues$z);
39446
39553
 
39447
39554
  var background$2 = "".concat(ATHENS_GREY);
39448
39555
  var white$1 = "".concat(WHITE);
@@ -39488,7 +39595,7 @@ var backgroundColor$5 = WHITE;
39488
39595
  var imageBackgroundColor = INFO_BLUE;
39489
39596
  var headerBackgroundColor = STORM_GREY;
39490
39597
  var headerColor = WHITE;
39491
- var fallbackValues$z = {
39598
+ var fallbackValues$A = {
39492
39599
  backgroundColor: backgroundColor$5,
39493
39600
  imageBackgroundColor: imageBackgroundColor,
39494
39601
  headerBackgroundColor: headerBackgroundColor,
@@ -39512,7 +39619,7 @@ var CardImage = styled__default.img.withConfig({
39512
39619
  var titleColor = BRIGHT_GREY;
39513
39620
  var titleWeight = FONT_WEIGHT_BOLD;
39514
39621
  var textColor$3 = BRIGHT_GREY;
39515
- var fallbackValues$A = {
39622
+ var fallbackValues$B = {
39516
39623
  titleColor: titleColor,
39517
39624
  titleWeight: titleWeight,
39518
39625
  textColor: textColor$3
@@ -39536,7 +39643,7 @@ var CardText = function CardText(_ref) {
39536
39643
  color: themeValues.textColor
39537
39644
  }, text))));
39538
39645
  };
39539
- var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$A);
39646
+ var CardText$1 = themeComponent(withWindowSize(CardText), "CardText", fallbackValues$B);
39540
39647
 
39541
39648
  var CardHeader = function CardHeader(_ref) {
39542
39649
  var backgroundColor = _ref.backgroundColor,
@@ -39638,12 +39745,12 @@ var Card = function Card(_ref) {
39638
39745
  titleVariant: titleVariant
39639
39746
  }), children)))));
39640
39747
  };
39641
- var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$z);
39748
+ var Card$1 = themeComponent(withWindowSize(Card), "Card", fallbackValues$A);
39642
39749
 
39643
39750
  var fontFamily$6 = "Public Sans, sans-serif";
39644
39751
  var activeColor$7 = MATISSE_BLUE;
39645
39752
  var linkColor$3 = CHARADE_GREY;
39646
- var fallbackValues$B = {
39753
+ var fallbackValues$C = {
39647
39754
  fontFamily: fontFamily$6,
39648
39755
  activeColor: activeColor$7,
39649
39756
  linkColor: linkColor$3
@@ -39672,7 +39779,7 @@ var NavTab = function NavTab(_ref) {
39672
39779
  extraStyles: "\n border-bottom: 3px solid transparent;\n font-family: ".concat(themeValues.fontFamily, ";\n text-decoration: none;\n ").concat(isActive && !isMobile ? border : "none", ";\n &:hover {\n text-decoration: none;\n color: ").concat(themeValues.activeColor, ";\n ").concat(isMobile ? "" : "".concat(border), "\n };\n padding: 1.25rem 0;\n ")
39673
39780
  }, label));
39674
39781
  };
39675
- var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$B);
39782
+ var NavTab$1 = themeComponent(NavTab, "NavTab", fallbackValues$C);
39676
39783
 
39677
39784
  var NavTabs = function NavTabs(_ref) {
39678
39785
  var tabsConfig = _ref.tabsConfig,
@@ -39775,7 +39882,7 @@ var backgroundColor$6 = {
39775
39882
  largeTitle: WHITE,
39776
39883
  small: WHITE
39777
39884
  };
39778
- var fallbackValues$C = {
39885
+ var fallbackValues$D = {
39779
39886
  fontSize: fontSize$9,
39780
39887
  fontWeight: fontWeight$5,
39781
39888
  fontColor: fontColor,
@@ -39855,7 +39962,7 @@ var Module = function Module(_ref) {
39855
39962
  boxShadow: themeValues.boxShadow
39856
39963
  }, children)));
39857
39964
  };
39858
- var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$C, "default"));
39965
+ var Module$1 = /*#__PURE__*/React.memo(themeComponent(Module, "Module", fallbackValues$D, "default"));
39859
39966
 
39860
39967
  var WalletName = function WalletName(_ref) {
39861
39968
  var mainText = _ref.mainText,
@@ -39960,7 +40067,7 @@ var TableCell_styled = styled__default.td.withConfig({
39960
40067
 
39961
40068
  var backgroundColor$7 = ALABASTER_WHITE;
39962
40069
  var borderColor$3 = GREY_CHATEAU;
39963
- var fallbackValues$D = {
40070
+ var fallbackValues$E = {
39964
40071
  backgroundColor: backgroundColor$7,
39965
40072
  borderColor: borderColor$3
39966
40073
  };
@@ -39982,7 +40089,7 @@ var StyledTableHead = styled__default.thead.withConfig({
39982
40089
 
39983
40090
  var borderColor$4 = GREY_CHATEAU;
39984
40091
  var hoverBackgroundColor$1 = HOVER_LIGHT_BLUE;
39985
- var fallbackValues$E = {
40092
+ var fallbackValues$F = {
39986
40093
  borderColor: borderColor$4,
39987
40094
  hoverBackgroundColor: hoverBackgroundColor$1
39988
40095
  };
@@ -40021,7 +40128,7 @@ var TableRow = function TableRow(_ref) {
40021
40128
  hoverBackgroundColor: themeValues.hoverBackgroundColor
40022
40129
  }, props), children);
40023
40130
  };
40024
- var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$E);
40131
+ var TableRow$1 = themeComponent(TableRow, "TableRow", fallbackValues$F);
40025
40132
 
40026
40133
  var TableHead = function TableHead(_ref) {
40027
40134
  var children = _ref.children,
@@ -40036,7 +40143,7 @@ var TableHead = function TableHead(_ref) {
40036
40143
  hoverEffect: false
40037
40144
  }, children));
40038
40145
  };
40039
- var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$D);
40146
+ var TableHead$1 = themeComponent(TableHead, "TableHead", fallbackValues$E);
40040
40147
 
40041
40148
  var TableHeading_styled = styled__default.th.withConfig({
40042
40149
  displayName: "TableHeadingstyled",
@@ -40871,7 +40978,7 @@ AddressForm.mapStateToProps = mapStateToProps$1;
40871
40978
  AddressForm.mapDispatchToProps = mapDispatchToProps;
40872
40979
 
40873
40980
  var backgroundColor$8 = "#ebeffb";
40874
- var fallbackValues$F = {
40981
+ var fallbackValues$G = {
40875
40982
  backgroundColor: backgroundColor$8
40876
40983
  };
40877
40984
 
@@ -40920,7 +41027,7 @@ var Banner = function Banner(_ref) {
40920
41027
  extraStyles: isMobile && "> svg { width: 176px; }"
40921
41028
  }, /*#__PURE__*/React__default.createElement(Image, null))));
40922
41029
  };
40923
- var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$F);
41030
+ var Banner$1 = themeComponent(Banner, "Banner", fallbackValues$G);
40924
41031
 
40925
41032
  var ChangePasswordForm = function ChangePasswordForm(_ref) {
40926
41033
  var clearOnDismount = _ref.clearOnDismount,
@@ -41054,7 +41161,7 @@ ChangePasswordForm.mapDispatchToProps = mapDispatchToProps$1;
41054
41161
  var titleColor$1 = "#292A33";
41055
41162
  var headingBackgroundColor = "transparent";
41056
41163
  var bodyBackgroundColor = "transparent";
41057
- var fallbackValues$G = {
41164
+ var fallbackValues$H = {
41058
41165
  titleColor: titleColor$1,
41059
41166
  headingBackgroundColor: headingBackgroundColor,
41060
41167
  bodyBackgroundColor: bodyBackgroundColor
@@ -41179,7 +41286,7 @@ var CollapsibleSection = function CollapsibleSection(_ref) {
41179
41286
  "aria-labelledby": "".concat(id, "-button")
41180
41287
  }, children))));
41181
41288
  };
41182
- var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$G);
41289
+ var CollapsibleSection$1 = themeComponent(CollapsibleSection, "CollapsibleSection", fallbackValues$H);
41183
41290
 
41184
41291
  var ClipboardIcon = function ClipboardIcon(_ref) {
41185
41292
  var themeValues = _ref.themeValues;
@@ -41758,7 +41865,7 @@ EmailForm.mapDispatchToProps = mapDispatchToProps$3;
41758
41865
 
41759
41866
  var footerBackgroundColor = BRIGHT_GREY;
41760
41867
  var subfooterBackgroundColor = STORM_GREY;
41761
- var fallbackValues$H = {
41868
+ var fallbackValues$I = {
41762
41869
  footerBackgroundColor: footerBackgroundColor,
41763
41870
  subfooterBackgroundColor: subfooterBackgroundColor
41764
41871
  };
@@ -41789,7 +41896,7 @@ var FooterWithSubfooter = function FooterWithSubfooter(_ref) {
41789
41896
  rightContent: rightSubfooterContent
41790
41897
  }));
41791
41898
  };
41792
- var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$H);
41899
+ var FooterWithSubfooter$1 = themeComponent(FooterWithSubfooter, "FooterWithSubfooter", fallbackValues$I);
41793
41900
 
41794
41901
  var ForgotPasswordForm = function ForgotPasswordForm(_ref) {
41795
41902
  var fields = _ref.fields,
@@ -41836,7 +41943,7 @@ ForgotPasswordForm.mapDispatchToProps = mapDispatchToProps$4;
41836
41943
 
41837
41944
  var textColor$4 = "#ffffff";
41838
41945
  var backgroundColor$9 = "#182848";
41839
- var fallbackValues$I = {
41946
+ var fallbackValues$J = {
41840
41947
  textColor: textColor$4,
41841
41948
  backgroundColor: backgroundColor$9
41842
41949
  };
@@ -41895,7 +42002,7 @@ var HighlightTabRow = function HighlightTabRow(_ref) {
41895
42002
  }, t));
41896
42003
  }), repeat( /*#__PURE__*/React__default.createElement(Box, null), boxesAfter))));
41897
42004
  };
41898
- var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$I);
42005
+ var HighlightTabRow$1 = themeComponent(HighlightTabRow, "HighlightTabRow", fallbackValues$J);
41899
42006
 
41900
42007
  var AccountBillIcon = function AccountBillIcon(_ref) {
41901
42008
  var color = _ref.color;
@@ -42311,7 +42418,7 @@ var activeBackgroundColor$1 = CORNFLOWER_BLUE;
42311
42418
  var backgroundColor$a = LINK_WATER;
42312
42419
  var borderColor$5 = MOON_RAKER;
42313
42420
  var color$b = ROYAL_BLUE_VIVID;
42314
- var fallbackValues$J = {
42421
+ var fallbackValues$K = {
42315
42422
  disabledBackgroundColor: disabledBackgroundColor$1,
42316
42423
  disabledBorderColor: disabledBorderColor$1,
42317
42424
  disabledColor: disabledColor$1,
@@ -42432,7 +42539,7 @@ var LinkCard = function LinkCard(_ref) {
42432
42539
  extraStyles: "margin-right: auto;"
42433
42540
  }), showRight && !!rightContent && rightContent))));
42434
42541
  };
42435
- var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$J, "primary");
42542
+ var LinkCard$1 = themeComponent(LinkCard, "LinkCard", fallbackValues$K, "primary");
42436
42543
 
42437
42544
  var LoginForm = function LoginForm(_ref) {
42438
42545
  var clearOnDismount = _ref.clearOnDismount,
@@ -46140,8 +46247,6 @@ var CloseButton = function CloseButton(_ref) {
46140
46247
  buttonExtraStyles = _ref$buttonExtraStyle === void 0 ? "" : _ref$buttonExtraStyle,
46141
46248
  _ref$closeButtonText = _ref.closeButtonText,
46142
46249
  closeButtonText = _ref$closeButtonText === void 0 ? "" : _ref$closeButtonText,
46143
- _ref$closeButtonVaria = _ref.closeButtonVariant,
46144
- closeButtonVariant = _ref$closeButtonVaria === void 0 ? "primary" : _ref$closeButtonVaria,
46145
46250
  _ref$hideModal = _ref.hideModal,
46146
46251
  hideModal = _ref$hideModal === void 0 ? noop : _ref$hideModal,
46147
46252
  _ref$isMobile = _ref.isMobile,
@@ -46158,7 +46263,7 @@ var CloseButton = function CloseButton(_ref) {
46158
46263
  role: "button",
46159
46264
  text: closeButtonText,
46160
46265
  textExtraStyles: "".concat(fontSize),
46161
- variant: closeButtonVariant
46266
+ variant: "primary"
46162
46267
  });
46163
46268
  };
46164
46269
 
@@ -46254,8 +46359,6 @@ var Modal$2 = function Modal(_ref) {
46254
46359
  children = _ref$children === void 0 ? [] : _ref$children,
46255
46360
  _ref$closeButtonText = _ref.closeButtonText,
46256
46361
  closeButtonText = _ref$closeButtonText === void 0 ? "Close" : _ref$closeButtonText,
46257
- _ref$closeButtonVaria = _ref.closeButtonVariant,
46258
- closeButtonVariant = _ref$closeButtonVaria === void 0 ? "primary" : _ref$closeButtonVaria,
46259
46362
  _ref$continueAction = _ref.continueAction,
46260
46363
  continueAction = _ref$continueAction === void 0 ? noop : _ref$continueAction,
46261
46364
  _ref$continueButtonTe = _ref.continueButtonText,
@@ -46410,7 +46513,6 @@ var Modal$2 = function Modal(_ref) {
46410
46513
  }), hasCloseButton && /*#__PURE__*/React__default.createElement(CloseButton, {
46411
46514
  buttonExtraStyles: buttonExtraStyles,
46412
46515
  closeButtonText: closeButtonText,
46413
- closeButtonVariant: closeButtonVariant,
46414
46516
  hideModal: hideModal,
46415
46517
  isMobile: isMobile,
46416
46518
  key: "close"
@@ -46437,7 +46539,7 @@ var shadowColor = {
46437
46539
  profile: "#292A33",
46438
46540
  cms: "#292A33"
46439
46541
  };
46440
- var fallbackValues$K = {
46542
+ var fallbackValues$L = {
46441
46543
  backgroundColor: backgroundColor$b,
46442
46544
  shadowColor: shadowColor
46443
46545
  };
@@ -46477,7 +46579,7 @@ var NavMenuDesktop = function NavMenuDesktop(_ref) {
46477
46579
  onBlur: onBlur
46478
46580
  }, menuContent));
46479
46581
  };
46480
- var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$K, "profile");
46582
+ var NavMenuDesktop$1 = themeComponent(NavMenuDesktop, "NavMenu", fallbackValues$L, "profile");
46481
46583
 
46482
46584
  var menu = posed.div({
46483
46585
  invisible: {
@@ -46537,7 +46639,7 @@ var NavMenuMobile = function NavMenuMobile(_ref2) {
46537
46639
  background: themeValues.backgroundColor
46538
46640
  }, menuContent));
46539
46641
  };
46540
- var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$K, "profile");
46642
+ var NavMenuMobile$1 = themeComponent(NavMenuMobile, "NavMenu", fallbackValues$L, "profile");
46541
46643
 
46542
46644
  var IconsModule = function IconsModule(_ref) {
46543
46645
  var icon = _ref.icon,
@@ -47064,7 +47166,7 @@ var InactiveTitleModule = function InactiveTitleModule(_ref) {
47064
47166
  };
47065
47167
 
47066
47168
  var iconColor = ROYAL_BLUE_VIVID;
47067
- var fallbackValues$L = {
47169
+ var fallbackValues$M = {
47068
47170
  iconColor: iconColor
47069
47171
  };
47070
47172
 
@@ -47286,7 +47388,7 @@ var Obligation = function Obligation(_ref) {
47286
47388
  }))));
47287
47389
  return inactive ? inactiveObligation : activeObligation;
47288
47390
  };
47289
- var Obligation$1 = themeComponent(Obligation, "Obligation", fallbackValues$L);
47391
+ var Obligation$1 = themeComponent(Obligation, "Obligation", fallbackValues$M);
47290
47392
 
47291
47393
  var PartialAmountField = function PartialAmountField(_ref) {
47292
47394
  var lineItem = _ref.lineItem,
@@ -47424,7 +47526,7 @@ var numberColor = MATISSE_BLUE;
47424
47526
  var hoverBackgroundColor$2 = ALABASTER_WHITE;
47425
47527
  var activeBackgroundColor$2 = WHITE;
47426
47528
  var activeColor$8 = MATISSE_BLUE;
47427
- var fallbackValues$M = {
47529
+ var fallbackValues$N = {
47428
47530
  activeColor: activeColor$8,
47429
47531
  activeBackgroundColor: activeBackgroundColor$2,
47430
47532
  arrowColor: arrowColor,
@@ -47618,7 +47720,7 @@ var Pagination = function Pagination(_ref3) {
47618
47720
  buttonWidth: buttonWidth
47619
47721
  }));
47620
47722
  };
47621
- var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$M);
47723
+ var Pagination$1 = themeComponent(Pagination, "Pagination", fallbackValues$N);
47622
47724
 
47623
47725
  var PaymentButtonBar = function PaymentButtonBar(_ref) {
47624
47726
  var _ref$isForwardButtonD = _ref.isForwardButtonDisabled,
@@ -47719,7 +47821,7 @@ var labeledAmountTotal = {
47719
47821
  "default": "large",
47720
47822
  small: "small"
47721
47823
  };
47722
- var fallbackValues$N = {
47824
+ var fallbackValues$O = {
47723
47825
  backgroundColor: backgroundColor$c,
47724
47826
  lineItem: lineItem,
47725
47827
  labeledAmountSubtotal: labeledAmountSubtotal,
@@ -48090,7 +48192,7 @@ var PaymentDetails = function PaymentDetails(_ref4) {
48090
48192
  isError: isError
48091
48193
  });
48092
48194
  };
48093
- var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$N, "default");
48195
+ var PaymentDetails$1 = themeComponent(PaymentDetails, "PaymentDetails", fallbackValues$O, "default");
48094
48196
 
48095
48197
  var linkColor$4 = {
48096
48198
  "default": "#3176AA"
@@ -48110,7 +48212,7 @@ var modalLinkHoverFocus = {
48110
48212
  var linkTextDecoration = {
48111
48213
  "default": LINK_TEXT_DECORATION
48112
48214
  };
48113
- var fallbackValues$O = {
48215
+ var fallbackValues$P = {
48114
48216
  linkColor: linkColor$4,
48115
48217
  fontSize: fontSize$a,
48116
48218
  lineHeight: lineHeight$4,
@@ -48174,7 +48276,7 @@ var AccountAndRoutingModal = function AccountAndRoutingModal(_ref) {
48174
48276
  }, link)
48175
48277
  }));
48176
48278
  };
48177
- var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$O, "default");
48279
+ var AccountAndRoutingModal$1 = themeComponent(AccountAndRoutingModal, "AccountAndRoutingModal", fallbackValues$P, "default");
48178
48280
 
48179
48281
  var backgroundColor$d = {
48180
48282
  "default": "#ffffff",
@@ -48209,7 +48311,7 @@ var modalLinkTextDecoration = {
48209
48311
  "default": LINK_TEXT_DECORATION,
48210
48312
  footer: "none"
48211
48313
  };
48212
- var fallbackValues$P = {
48314
+ var fallbackValues$Q = {
48213
48315
  backgroundColor: backgroundColor$d,
48214
48316
  linkColor: linkColor$5,
48215
48317
  border: border$3,
@@ -48281,7 +48383,7 @@ var TermsAndConditionsModal = function TermsAndConditionsModal(_ref) {
48281
48383
  className: "modal-trigger"
48282
48384
  }, link));
48283
48385
  };
48284
- var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$P, "default");
48386
+ var TermsAndConditionsModal$1 = themeComponent(TermsAndConditionsModal, "TermsAndConditionsModal", fallbackValues$Q, "default");
48285
48387
 
48286
48388
  var TermsAndConditionsControlV1 = function TermsAndConditionsControlV1(_ref) {
48287
48389
  var onCheck = _ref.onCheck,
@@ -49045,7 +49147,7 @@ var headingDisabledColor = "".concat(ATHENS_GREY);
49045
49147
  var bodyBackgroundColor$1 = "#eeeeee";
49046
49148
  var borderColor$6 = "".concat(GHOST_GREY);
49047
49149
  var focusStyles = "outline: none;";
49048
- var fallbackValues$Q = {
49150
+ var fallbackValues$R = {
49049
49151
  headingBackgroundColor: headingBackgroundColor$1,
49050
49152
  headingDisabledColor: headingDisabledColor,
49051
49153
  bodyBackgroundColor: bodyBackgroundColor$1,
@@ -49348,7 +49450,7 @@ var RadioSection = function RadioSection(_ref) {
49348
49450
  });
49349
49451
  })));
49350
49452
  };
49351
- var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$Q);
49453
+ var RadioSection$1 = themeComponent(RadioSection, "RadioSection", fallbackValues$R);
49352
49454
 
49353
49455
  var RegistrationForm = function RegistrationForm(_ref) {
49354
49456
  var clearOnDismount = _ref.clearOnDismount,
@@ -49468,13 +49570,13 @@ RegistrationForm.mapDispatchToProps = mapDispatchToProps$9;
49468
49570
 
49469
49571
  var GRECIAN_GREY$1 = GRECIAN_GREY;
49470
49572
  var bannerBackgroundColor = GRECIAN_GREY$1;
49471
- var fallbackValues$R = {
49573
+ var fallbackValues$S = {
49472
49574
  bannerBackgroundColor: bannerBackgroundColor
49473
49575
  };
49474
49576
 
49475
49577
  var ResetConfirmationForm = function ResetConfirmationForm() {
49476
49578
  var themeContext = React.useContext(styled.ThemeContext);
49477
- var themeValues = createThemeValues(themeContext, fallbackValues$R, "ResetConfirmationForm");
49579
+ var themeValues = createThemeValues(themeContext, fallbackValues$S, "ResetConfirmationForm");
49478
49580
  var isMobile = themeContext.isMobile;
49479
49581
  return /*#__PURE__*/React__default.createElement(Box, {
49480
49582
  padding: "0",
@@ -49589,13 +49691,13 @@ ResetPasswordForm.mapDispatchToProps = mapDispatchToProps$a;
49589
49691
 
49590
49692
  var GRECIAN_GREY$2 = GRECIAN_GREY;
49591
49693
  var bannerBackgroundColor$1 = GRECIAN_GREY$2;
49592
- var fallbackValues$S = {
49694
+ var fallbackValues$T = {
49593
49695
  bannerBackgroundColor: bannerBackgroundColor$1
49594
49696
  };
49595
49697
 
49596
49698
  var ResetPasswordSuccess = function ResetPasswordSuccess() {
49597
49699
  var themeContext = React.useContext(styled.ThemeContext);
49598
- var themeValues = createThemeValues(themeContext, fallbackValues$S, "ResetPasswordSuccess");
49700
+ var themeValues = createThemeValues(themeContext, fallbackValues$T, "ResetPasswordSuccess");
49599
49701
  var isMobile = themeContext.isMobile;
49600
49702
  return /*#__PURE__*/React__default.createElement(Box, {
49601
49703
  padding: "0",
@@ -49644,7 +49746,7 @@ var ResetPasswordSuccess$1 = withWindowSize(ResetPasswordSuccess);
49644
49746
  var activeTabBackground = "#FFFFFF";
49645
49747
  var activeTabAccent = "#15749D";
49646
49748
  var activeTabHover = "#B8D5E1";
49647
- var fallbackValues$T = {
49749
+ var fallbackValues$U = {
49648
49750
  activeTabBackground: activeTabBackground,
49649
49751
  activeTabAccent: activeTabAccent,
49650
49752
  activeTabHover: activeTabHover
@@ -49712,12 +49814,12 @@ var Tabs = function Tabs(_ref) {
49712
49814
  }, tab.content);
49713
49815
  }))));
49714
49816
  };
49715
- var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$T);
49817
+ var Tabs$1 = themeComponent(Tabs, "NavigationTab", fallbackValues$U);
49716
49818
 
49717
49819
  var activeTabBackground$1 = "#FFFFFF";
49718
49820
  var activeTabAccent$1 = "#15749D";
49719
49821
  var activeTabHover$1 = "#B8D5E1";
49720
- var fallbackValues$U = {
49822
+ var fallbackValues$V = {
49721
49823
  activeTabBackground: activeTabBackground$1,
49722
49824
  activeTabAccent: activeTabAccent$1,
49723
49825
  activeTabHover: activeTabHover$1
@@ -49772,7 +49874,7 @@ var TabSidebar = function TabSidebar(_ref) {
49772
49874
  }, text)))));
49773
49875
  })));
49774
49876
  };
49775
- var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$U);
49877
+ var TabSidebar$1 = themeComponent(TabSidebar, "ProfileTab", fallbackValues$V);
49776
49878
 
49777
49879
  var Timeout = function Timeout(_ref) {
49778
49880
  var onLogout = _ref.onLogout;
@@ -49893,7 +49995,7 @@ var fontColor$1 = WHITE;
49893
49995
  var textAlign$1 = "left";
49894
49996
  var headerBackgroundColor$1 = BRIGHT_GREY;
49895
49997
  var imageBackgroundColor$1 = MATISSE_BLUE;
49896
- var fallbackValues$V = {
49998
+ var fallbackValues$W = {
49897
49999
  fontWeight: fontWeight$8,
49898
50000
  fontColor: fontColor$1,
49899
50001
  textAlign: textAlign$1,
@@ -49938,7 +50040,7 @@ var WelcomeModule = function WelcomeModule(_ref) {
49938
50040
  src: welcomeImage
49939
50041
  })))));
49940
50042
  };
49941
- var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$V));
50043
+ var WelcomeModule$1 = /*#__PURE__*/React.memo(themeComponent(WelcomeModule, "WelcomeModule", fallbackValues$W));
49942
50044
 
49943
50045
  var WorkflowTile = function WorkflowTile(_ref) {
49944
50046
  var _ref$workflowName = _ref.workflowName,
@@ -49998,7 +50100,7 @@ var menuItemColorDelete = RAZZMATAZZ_RED;
49998
50100
  var menuItemHoverBackgroundColor = CORNFLOWER_BLUE;
49999
50101
  var menuItemHoverBackgroundColorDelete = BLUSH_RED;
50000
50102
  var menuItemHoverColor = ROYAL_BLUE_VIVID;
50001
- var fallbackValues$W = {
50103
+ var fallbackValues$X = {
50002
50104
  menuItemBackgroundColor: menuItemBackgroundColor,
50003
50105
  menuItemColor: menuItemColor,
50004
50106
  menuItemColorDelete: menuItemColorDelete,
@@ -50065,13 +50167,13 @@ var PopupMenuItem = function PopupMenuItem(_ref) {
50065
50167
  extraStyles: textExtraStyles
50066
50168
  }, text)));
50067
50169
  };
50068
- var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$W);
50170
+ var PopupMenuItem$1 = themeComponent(PopupMenuItem, "PopupMenuItem", fallbackValues$X);
50069
50171
 
50070
50172
  var hoverColor$5 = "#116285";
50071
50173
  var activeColor$9 = "#0E506D";
50072
50174
  var menuTriggerColor = "#15749D";
50073
50175
  var backgroundColor$e = "white";
50074
- var fallbackValues$X = {
50176
+ var fallbackValues$Y = {
50075
50177
  hoverColor: hoverColor$5,
50076
50178
  activeColor: activeColor$9,
50077
50179
  menuTriggerColor: menuTriggerColor,
@@ -50207,10 +50309,10 @@ var PopupMenu = function PopupMenu(_ref) {
50207
50309
  }, item));
50208
50310
  })));
50209
50311
  };
50210
- var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$X);
50312
+ var PopupMenu$1 = themeComponent(PopupMenu, "PopupMenu", fallbackValues$Y);
50211
50313
 
50212
50314
  var pageBackground = "#FBFCFD";
50213
- var fallbackValues$Y = {
50315
+ var fallbackValues$Z = {
50214
50316
  pageBackground: pageBackground
50215
50317
  };
50216
50318
 
@@ -50258,7 +50360,7 @@ var CenterSingle = function CenterSingle(_ref) {
50258
50360
  padding: "0"
50259
50361
  })));
50260
50362
  };
50261
- var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$Y));
50363
+ var CenterSingle$1 = withWindowSize(themeComponent(CenterSingle, "Global", fallbackValues$Z));
50262
50364
 
50263
50365
  var CenterStack = function CenterStack(_ref) {
50264
50366
  var header = _ref.header,
@@ -50301,7 +50403,7 @@ var CenterStack = function CenterStack(_ref) {
50301
50403
  padding: "0"
50302
50404
  })));
50303
50405
  };
50304
- var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$Y));
50406
+ var CenterStack$1 = withWindowSize(themeComponent(CenterStack, "Global", fallbackValues$Z));
50305
50407
 
50306
50408
  var CenterSingle$2 = function CenterSingle(_ref) {
50307
50409
  var header = _ref.header,
@@ -50347,7 +50449,7 @@ var CenterSingle$2 = function CenterSingle(_ref) {
50347
50449
  padding: "0"
50348
50450
  })));
50349
50451
  };
50350
- var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$Y));
50452
+ var DefaultPageTemplate = withWindowSize(themeComponent(CenterSingle$2, "Global", fallbackValues$Z));
50351
50453
 
50352
50454
  var SidebarSingleContent = function SidebarSingleContent(_ref) {
50353
50455
  var header = _ref.header,
@@ -50400,7 +50502,7 @@ var SidebarSingleContent = function SidebarSingleContent(_ref) {
50400
50502
  padding: "0"
50401
50503
  })));
50402
50504
  };
50403
- var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$Y));
50505
+ var SidebarSingleContent$1 = withWindowSize(themeComponent(SidebarSingleContent, "Global", fallbackValues$Z));
50404
50506
 
50405
50507
  var SidebarStackContent = function SidebarStackContent(_ref) {
50406
50508
  var header = _ref.header,
@@ -50470,7 +50572,7 @@ var SidebarStackContent = function SidebarStackContent(_ref) {
50470
50572
  key: "footer-box"
50471
50573
  })));
50472
50574
  };
50473
- var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$Y));
50575
+ var SidebarStackContent$1 = withWindowSize(themeComponent(SidebarStackContent, "Global", fallbackValues$Z));
50474
50576
 
50475
50577
  var useFocusInvalidInput = function useFocusInvalidInput(hasErrors) {
50476
50578
  var resetHasErrors = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : function () {};
@@ -50673,6 +50775,7 @@ exports.ResetPasswordSuccess = ResetPasswordSuccess$1;
50673
50775
  exports.RevenueManagementImage = RevenueManagementImage;
50674
50776
  exports.ReversalNeededIcon = ReversalNeededIcon;
50675
50777
  exports.RoutingNumberImage = RoutingNumberImage;
50778
+ exports.Search = Search$1;
50676
50779
  exports.SearchIcon = SearchIcon;
50677
50780
  exports.SearchableSelect = SearchableSelect$1;
50678
50781
  exports.SettingsIconSmall = SettingsIconSmall$1;